summaryrefslogtreecommitdiffstats
path: root/src/com/android/nfc/RegisteredComponentCache.java
diff options
context:
space:
mode:
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;