Fix comment according to review.

Change-Id: I784f2051cd173425e9a9570ac4555cf835dd277d
This commit is contained in:
Christopher Ferris
2015-02-04 10:40:12 -08:00
parent 53e8d6f934
commit 7254c123a1

View File

@@ -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 {