Skip to content

Commit 4f6509d

Browse files
asashourphilwebb
authored andcommitted
Prevent unnecessary unboxing
See gh-40985
1 parent 623c395 commit 4f6509d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/embedded/tomcat/NestedJarResourceSet.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2023 the original author or authors.
2+
* Copyright 2012-2024 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -128,7 +128,7 @@ protected boolean isMultiRelease() {
128128
}
129129
}
130130
}
131-
return this.multiRelease.booleanValue();
131+
return this.multiRelease;
132132
}
133133

134134
@Override

0 commit comments

Comments
 (0)