Skip to content

Commit 20fb55e

Browse files
author
Phillip Webb
committed
Polish
1 parent a3ceaf6 commit 20fb55e

File tree

9 files changed

+12
-0
lines changed

9 files changed

+12
-0
lines changed

spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/JarLauncher.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,5 @@ protected void postProcessClassPathArchives(List<Archive> archives) throws Excep
4444
public static void main(String[] args) {
4545
new JarLauncher().launch(args);
4646
}
47+
4748
}

spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/JavaAgentDetector.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,5 @@ public interface JavaAgentDetector {
3232
* @param url The url to examine
3333
*/
3434
public boolean isJavaAgentJar(URL url);
35+
3536
}

spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/LaunchedURLClassLoader.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -221,4 +221,5 @@ public Object run() throws ClassNotFoundException {
221221
// Ignore
222222
}
223223
}
224+
224225
}

spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/WarLauncher.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,4 +79,5 @@ public AsciiBytes apply(AsciiBytes entryName, Archive.Entry entry) {
7979
public static void main(String[] args) {
8080
new WarLauncher().launch(args);
8181
}
82+
8283
}

spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/data/RandomAccessData.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,5 +65,7 @@ public static enum ResourceAccess {
6565
* Obtain access to the underlying resource on each read, releasing it when done.
6666
*/
6767
PER_READ
68+
6869
}
70+
6971
}

spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/data/RandomAccessDataFile.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -221,6 +221,7 @@ private long moveOn(int amount) {
221221
this.position += amount;
222222
return amount;
223223
}
224+
224225
}
225226

226227
/**
@@ -277,5 +278,7 @@ public void close() throws IOException {
277278
throw new IOException(ex);
278279
}
279280
}
281+
280282
}
283+
281284
}

spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/jar/Bytes.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,4 +76,5 @@ public static long littleEndianValue(byte[] bytes, int offset, int length) {
7676
}
7777
return value;
7878
}
79+
7980
}

spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/jar/CentralDirectoryEndRecord.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,4 +119,5 @@ public RandomAccessData getCentralDirectory(RandomAccessData data) {
119119
public int getNumberOfRecords() {
120120
return (int) Bytes.littleEndianValue(this.block, this.offset + 10, 2);
121121
}
122+
122123
}

spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/jar/JarFile.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -478,4 +478,5 @@ private static enum PathForm {
478478
*/
479479
SYSTEM_INDEPENDENT
480480
}
481+
481482
}

0 commit comments

Comments
 (0)