Browse Source

Merge pull request #3497 from izeye/patch-34

* pr/3497:
  Remove redundant check
pull/3497/merge
Stephane Nicoll 11 years ago
parent
commit
e22ae39b35
  1. 3
      spring-boot-tools/spring-boot-configuration-processor/src/test/java/org/springframework/boot/configurationprocessor/ConfigurationMetadataMatchers.java

3
spring-boot-tools/spring-boot-configuration-processor/src/test/java/org/springframework/boot/configurationprocessor/ConfigurationMetadataMatchers.java

@ -230,9 +230,6 @@ public class ConfigurationMetadataMatchers { @@ -230,9 +230,6 @@ public class ConfigurationMetadataMatchers {
if (itemHint == null) {
return false;
}
if (this.name != null && !this.name.equals(itemHint.getName())) {
return false;
}
for (ValueHintMatcher value : this.values) {
if (!value.matches(itemHint)) {
return false;

Loading…
Cancel
Save