summaryrefslogtreecommitdiff
path: root/java/com/android/dialer/strictmode
diff options
context:
space:
mode:
authorEric Erfanian <erfanian@google.com>2017-10-24 14:05:52 -0700
committerEric Erfanian <erfanian@google.com>2017-10-24 14:05:52 -0700
commit938468da6f5c225ebb161a68bd949c9cf3261892 (patch)
tree232533fa35dc9d140fdfe0dac82b2bd21ad1b5c4 /java/com/android/dialer/strictmode
parent958b292fc04ad15879fff47df929d6d1a826615c (diff)
Rename the new bubble package name from "bubble" to "newbubble".
It fixes AOSP for package name conflict. Test: manual PiperOrigin-RevId: 173298696 Change-Id: Id10ebe0bcf029e61f65cf6580c7198abd8395081
Diffstat (limited to 'java/com/android/dialer/strictmode')
-rw-r--r--java/com/android/dialer/strictmode/impl/SystemDialerStrictMode.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/java/com/android/dialer/strictmode/impl/SystemDialerStrictMode.java b/java/com/android/dialer/strictmode/impl/SystemDialerStrictMode.java
index b974ab18a..09fdf5cda 100644
--- a/java/com/android/dialer/strictmode/impl/SystemDialerStrictMode.java
+++ b/java/com/android/dialer/strictmode/impl/SystemDialerStrictMode.java
@@ -53,7 +53,7 @@ final class SystemDialerStrictMode implements DialerStrictMode {
// Because Android resets StrictMode policies after Application.onCreate is done, we set it
// again right after.
// See cl/105932355 for the discussion.
- // See b/36951662 for the public bug.
+ // See a bug for the public bug.
Handler handler = new Handler(Looper.myLooper());
handler.postAtFrontOfQueue(() -> setRecommendedMainThreadPolicy(THREAD_DEATH_PENALTY));
}
@@ -93,7 +93,7 @@ final class SystemDialerStrictMode implements DialerStrictMode {
.detectLeakedSqlLiteObjects();
if (Build.VERSION.SDK_INT >= 26) {
vmPolicyBuilder.detectContentUriWithoutPermission();
- // TODO(azlatin): Enable detecting untagged sockets once: b/64840386 is fixed.
+ // TODO(azlatin): Enable detecting untagged sockets once: a bug is fixed.
// vmPolicyBuilder.detectUntaggedSockets();
}
StrictMode.setVmPolicy(vmPolicyBuilder.build());