Merge branch '1.4.x' into 1.5.x
This commit is contained in:
commit
06e44c71ec
2
spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/archive/JarFileArchive.java
Normal file → Executable file
2
spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/archive/JarFileArchive.java
Normal file → Executable file
|
@ -219,7 +219,7 @@ public class JarFileArchive implements Archive {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getName() {
|
public String getName() {
|
||||||
return this.jarEntry.getName().toString();
|
return this.jarEntry.getName();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
2
spring-boot-tools/spring-boot-loader/src/test/java/org/springframework/boot/loader/archive/JarFileArchiveTests.java
Normal file → Executable file
2
spring-boot-tools/spring-boot-loader/src/test/java/org/springframework/boot/loader/archive/JarFileArchiveTests.java
Normal file → Executable file
|
@ -123,7 +123,7 @@ public class JarFileArchiveTests {
|
||||||
private Map<String, Archive.Entry> getEntriesMap(Archive archive) {
|
private Map<String, Archive.Entry> getEntriesMap(Archive archive) {
|
||||||
Map<String, Archive.Entry> entries = new HashMap<String, Archive.Entry>();
|
Map<String, Archive.Entry> entries = new HashMap<String, Archive.Entry>();
|
||||||
for (Archive.Entry entry : archive) {
|
for (Archive.Entry entry : archive) {
|
||||||
entries.put(entry.getName().toString(), entry);
|
entries.put(entry.getName(), entry);
|
||||||
}
|
}
|
||||||
return entries;
|
return entries;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue