Skip to content

Instantly share code, notes, and snippets.

@rnewman
Created March 29, 2012 19:08
Show Gist options
  • Save rnewman/2242256 to your computer and use it in GitHub Desktop.
Save rnewman/2242256 to your computer and use it in GitHub Desktop.
# HG changeset patch
# Parent b87f9cc3ae84219b7de6af73b9ca10403512772d
# User Richard Newman <rnewman@mozilla.com>
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