Created
March 29, 2012 19:08
-
-
Save rnewman/2242256 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# HG changeset patch | |
# Parent b87f9cc3ae84219b7de6af73b9ca10403512772d | |
# User Richard Newman <[email protected]> | |
Bug 740326 - Fix over-long log tag. | |
diff --git a/mobile/android/base/sync/net/SyncStorageRequest.java b/mobile/android/base/sync/net/SyncStorageRequest.java | |
--- a/mobile/android/base/sync/net/SyncStorageRequest.java | |
+++ b/mobile/android/base/sync/net/SyncStorageRequest.java | |
@@ -77,17 +77,17 @@ public class SyncStorageRequest implemen | |
this.resourceDelegate = this.makeResourceDelegate(this); | |
this.resource.delegate = this.resourceDelegate; | |
} | |
/** | |
* A ResourceDelegate that mediates between Resource-level notifications and the SyncStorageRequest. | |
*/ | |
public class SyncStorageResourceDelegate extends SyncResourceDelegate { | |
- private static final String LOG_TAG = "SyncStorageResourceDelegate"; | |
+ private static final String LOG_TAG = "SSResourceDelegate"; | |
protected SyncStorageRequest request; | |
SyncStorageResourceDelegate(SyncStorageRequest request) { | |
super(request); | |
this.request = request; | |
} | |
@Override |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment