summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorChristopher Ferris <cferris@google.com>2015-02-04 19:29:56 +0000
committerandroid-build-merger <android-build-merger@google.com>2015-02-04 19:29:56 +0000
commit9d25fcae8560a2e2bc2e28b08778bd1a94261cd1 (patch)
tree86bfd17a86d2e07c5acca1b9e8b55e17dafed0b9 /core
parent8911c2aeb17dfde123b9d412f700c20a33babbfc (diff)
parentff6cebf0a65f9d6e20497295a1a9c290df85052b (diff)
downloadframeworks_base-9d25fcae8560a2e2bc2e28b08778bd1a94261cd1.zip
frameworks_base-9d25fcae8560a2e2bc2e28b08778bd1a94261cd1.tar.gz
frameworks_base-9d25fcae8560a2e2bc2e28b08778bd1a94261cd1.tar.bz2
am 4fb79d14: Merge "Fix comment according to review."
automerge: ff6cebf * commit 'ff6cebf0a65f9d6e20497295a1a9c290df85052b': Fix comment according to review.
Diffstat (limited to 'core')
-rw-r--r--core/java/com/android/internal/os/ZygoteConnection.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/com/android/internal/os/ZygoteConnection.java b/core/java/com/android/internal/os/ZygoteConnection.java
index 0eb52cb..c9b44be 100644
--- a/core/java/com/android/internal/os/ZygoteConnection.java
+++ b/core/java/com/android/internal/os/ZygoteConnection.java
@@ -800,7 +800,7 @@ class ZygoteConnection {
if (args.niceName != null) {
String property = "wrap." + args.niceName;
if (property.length() > 31) {
- // Avoid creating an illegal property name when truncating.
+ // Properties with a trailing "." are illegal.
if (property.charAt(30) != '.') {
property = property.substring(0, 31);
} else {