summaryrefslogtreecommitdiffstats
path: root/src/com/android/nfc/RegisteredComponentCache.java
diff options
context:
space:
mode:
authorThe Android Open Source Project <initial-contribution@android.com>2012-12-13 16:44:23 -0800
committerThe Android Open Source Project <initial-contribution@android.com>2012-12-13 16:44:23 -0800
commitbe1939b4b6003ac7a65fcb95a3912f5e1ce8e75f (patch)
tree694dc2546dd2397528d4b78d067716f451792662 /src/com/android/nfc/RegisteredComponentCache.java
parent525c260303268a83da4c3413b953d13c9084e834 (diff)
downloadpackages_apps_nfc-be1939b4b6003ac7a65fcb95a3912f5e1ce8e75f.zip
packages_apps_nfc-be1939b4b6003ac7a65fcb95a3912f5e1ce8e75f.tar.gz
packages_apps_nfc-be1939b4b6003ac7a65fcb95a3912f5e1ce8e75f.tar.bz2
Snapshot b80adb2c263702442cf2f2d771168400e6ceb9f8
Change-Id: I391d8e1be1a61e68b01f0db371dbb4ed3e5b5933
Diffstat (limited to 'src/com/android/nfc/RegisteredComponentCache.java')
-rw-r--r--src/com/android/nfc/RegisteredComponentCache.java5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/com/android/nfc/RegisteredComponentCache.java b/src/com/android/nfc/RegisteredComponentCache.java
index 5da2cd4..8d73317 100644
--- a/src/com/android/nfc/RegisteredComponentCache.java
+++ b/src/com/android/nfc/RegisteredComponentCache.java
@@ -43,6 +43,7 @@ import java.util.concurrent.atomic.AtomicReference;
*/
public class RegisteredComponentCache {
private static final String TAG = "RegisteredComponentCache";
+ private static final boolean DEBUG = false;
final Context mContext;
final String mAction;
@@ -165,7 +166,9 @@ public class RegisteredComponentCache {
}
}
- dump(components);
+ if (DEBUG) {
+ dump(components);
+ }
synchronized (this) {
mComponents = components;