Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / third_party / cacheinvalidation / src / java / com / google / ipc / invalidation / ticl / android2 / AndroidInvalidationListenerStub.java
index 247309d..527157d 100644 (file)
@@ -40,6 +40,7 @@ public class AndroidInvalidationListenerStub extends IntentService {
 
   public AndroidInvalidationListenerStub() {
     super("");
+    setIntentRedelivery(true);
   }
 
   @Override
@@ -62,11 +63,11 @@ public class AndroidInvalidationListenerStub extends IntentService {
 
   /**
    * Handles a listener upcall by decoding the protocol buffer in {@code intent} and dispatching
-   * to the appropriate method on an instance of {@link #listenerClass}.
+   * to the appropriate method on an instance of {@link InvalidationListener}.
    */
   @Override
   public void onHandleIntent(Intent intent) {
-    logger.fine("onHandleIntent({0})", AndroidStrings.toLazyCompactString(intent));
+    logger.fine("onHandleIntent({0})", intent);
     intentMapper.handleIntent(intent);
   }