Commit e22ae39b authored by Stephane Nicoll's avatar Stephane Nicoll

Merge pull request #3497 from izeye/patch-34

* pr/3497:
  Remove redundant check
parents 86f93837 019140c9
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment