summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Mythri Alle <mythria@google.com> 2023-04-12 12:03:39 +0000
committer Mythri Alle <mythria@google.com> 2023-04-12 12:03:39 +0000
commit5ad7d3811534b9ec17274d47b7b85a90e208b51e (patch)
tree6fd3de766679aeed3516529833fc0afa4790b69c
parent7464e441975b86e041b99bf91ee6d97e9fe66333 (diff)
Fix the system property name in a comment
The system property to enable jdwp should be persist.debug.dalvik.vm.jdwp.enabled and not persist.debuggable.dalvik.vm.jdwp.enabled Bug: 277161682 Test: A change to comment Change-Id: Ib8e509b5362d389239094eee575336a5a65d56d9
-rw-r--r--core/java/com/android/internal/os/Zygote.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/com/android/internal/os/Zygote.java b/core/java/com/android/internal/os/Zygote.java
index 05cad77ca9ab..d8aeb51c2e4d 100644
--- a/core/java/com/android/internal/os/Zygote.java
+++ b/core/java/com/android/internal/os/Zygote.java
@@ -1018,7 +1018,7 @@ public final class Zygote {
* Applies debugger system properties to the zygote arguments.
*
* For eng builds all apps are debuggable. On userdebug and user builds
- * if persist.debuggable.dalvik.vm.jdwp.enabled is 1 all apps are
+ * if persist.debug.dalvik.vm.jdwp.enabled is 1 all apps are
* debuggable. Otherwise, the debugger state is specified via the
* "--enable-jdwp" flag in the spawn request.
*