Remove redundant check

Closes gh-3497
pull/3497/merge
izeye 9 years ago committed by Stephane Nicoll
parent 86f938374a
commit 019140c901

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

Loading…
Cancel
Save