diff --git a/spring-boot-project/spring-boot-tools/spring-boot-configuration-processor/src/main/java/org/springframework/boot/configurationprocessor/metadata/ConfigurationMetadata.java b/spring-boot-project/spring-boot-tools/spring-boot-configuration-processor/src/main/java/org/springframework/boot/configurationprocessor/metadata/ConfigurationMetadata.java index 4473816db0..048d4e0fb0 100644 --- a/spring-boot-project/spring-boot-tools/spring-boot-configuration-processor/src/main/java/org/springframework/boot/configurationprocessor/metadata/ConfigurationMetadata.java +++ b/spring-boot-project/spring-boot-tools/spring-boot-configuration-processor/src/main/java/org/springframework/boot/configurationprocessor/metadata/ConfigurationMetadata.java @@ -165,7 +165,7 @@ public class ConfigurationMetadata { if (o1 == o2) { return true; } - return o1 != null && o2 != null && o1.equals(o2); + return o1 != null && o1.equals(o2); } public static String nestedPrefix(String prefix, String name) { diff --git a/spring-boot-project/spring-boot-tools/spring-boot-gradle-plugin/src/main/java/org/springframework/boot/gradle/tasks/bundling/LaunchScriptConfiguration.java b/spring-boot-project/spring-boot-tools/spring-boot-gradle-plugin/src/main/java/org/springframework/boot/gradle/tasks/bundling/LaunchScriptConfiguration.java index 147c19a876..c084cecaa5 100644 --- a/spring-boot-project/spring-boot-tools/spring-boot-gradle-plugin/src/main/java/org/springframework/boot/gradle/tasks/bundling/LaunchScriptConfiguration.java +++ b/spring-boot-project/spring-boot-tools/spring-boot-gradle-plugin/src/main/java/org/springframework/boot/gradle/tasks/bundling/LaunchScriptConfiguration.java @@ -106,17 +106,14 @@ public class LaunchScriptConfiguration implements Serializable { return false; } if (this.script == null) { - if (other.script != null) { - return false; - } + return other.script == null; } else if (!this.script.equals(other.script)) { return false; } - else if (!equalContents(this.script, other.script)) { - return false; + else { + return equalContents(this.script, other.script); } - return true; } private boolean equalContents(File one, File two) { @@ -132,7 +129,7 @@ public class LaunchScriptConfiguration implements Serializable { public int hashCode() { final int prime = 31; int result = 1; - result = prime * result + ((this.properties == null) ? 0 : this.properties.hashCode()); + result = prime * result + this.properties.hashCode(); result = prime * result + ((this.script == null) ? 0 : this.script.hashCode()); return result; } diff --git a/spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/src/main/java/org/springframework/boot/maven/PropertiesMergingResourceTransformer.java b/spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/src/main/java/org/springframework/boot/maven/PropertiesMergingResourceTransformer.java index 1ba1186c78..3d5141f155 100644 --- a/spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/src/main/java/org/springframework/boot/maven/PropertiesMergingResourceTransformer.java +++ b/spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/src/main/java/org/springframework/boot/maven/PropertiesMergingResourceTransformer.java @@ -52,10 +52,7 @@ public class PropertiesMergingResourceTransformer implements ResourceTransformer @Override public boolean canTransformResource(String resource) { - if (this.resource != null && this.resource.equalsIgnoreCase(resource)) { - return true; - } - return false; + return this.resource != null && this.resource.equalsIgnoreCase(resource); } @Override