Skip to content

Commit 9368164

Browse files
author
Piyal Ahmed
committed
Fix formatting issue
Signed-off-by: Piyal Ahmed <[email protected]>
1 parent 2724e29 commit 9368164

File tree

1 file changed

+2
-1
lines changed
  • spring-boot-project/spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/net/util

1 file changed

+2
-1
lines changed

spring-boot-project/spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/net/util/UrlDecoder.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,8 @@ private static int fillByteBuffer(ByteBuffer byteBuffer, String string, int inde
7676
do {
7777
byteBuffer.put(unescape(string, index));
7878
index += 3;
79-
} while (index < length && string.charAt(index) == '%');
79+
}
80+
while (index < length && string.charAt(index) == '%');
8081
byteBuffer.flip();
8182
return index;
8283
}

0 commit comments

Comments
 (0)