Skip to content

Commit d148e2f

Browse files
authored
ICU-23252 reformat
1 parent 5a2e763 commit d148e2f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

icu4j/main/core/src/main/java/com/ibm/icu/text/MessagePattern.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1382,9 +1382,9 @@ private static int parseArgNumber(CharSequence s, int start, int limit) {
13821382
} else {
13831383
return ARG_NAME_NOT_NUMBER;
13841384
}
1385-
while(start<limit) {
1385+
while(start < limit) {
13861386
c = s.charAt(start++);
1387-
if('0'<=c && c <= '9') {
1387+
if('0' <= c && c <= '9') {
13881388
if(number >= Integer.MAX_VALUE / 10) {
13891389
badNumber = true; // overflow
13901390
} else {

0 commit comments

Comments
 (0)