File tree Expand file tree Collapse file tree
base/core/java/android/app Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -961,7 +961,7 @@ private static String longArrayToString(long[] values) {
961961 for (int i = 0 ; i < values .length - 1 ; i ++) {
962962 sb .append (values [i ]).append (DELIMITER );
963963 }
964- if (values .length > 0 )//fix ArrayIndexOutOfBoundsException by Kerim
964+ if (values .length > 0 )//fixed ArrayIndexOutOfBoundsException by Kerim
965965 sb .append (values [values .length - 1 ]);
966966 }
967967 return sb .toString ();
Original file line number Diff line number Diff line change @@ -961,7 +961,7 @@ public final class NotificationChannel implements Parcelable {
961961 for (int i = 0; i < values.length - 1; i++) {
962962 sb.append(values[i]).append(DELIMITER);
963963 }
964- if(values.length > 0)//fix ArrayIndexOutOfBoundsException by Kerim
964+ if(values.length > 0)//fixed ArrayIndexOutOfBoundsException by Kerim
965965 sb.append(values[values.length - 1]);
966966 }
967967 return sb.toString();
You can’t perform that action at this time.
0 commit comments