Skip to content

Commit

Permalink
Merge branch '2.3.x'
Browse files Browse the repository at this point in the history
Closes gh-24013
  • Loading branch information
wilkinsona committed Nov 3, 2020
2 parents 07d9237 + dc86e8c commit d41e739
Showing 1 changed file with 10 additions and 0 deletions.
Expand Up @@ -62,6 +62,16 @@ public boolean match(MetadataReader metadataReader, MetadataReaderFactory metada
return false;
}

@Override
public boolean equals(Object obj) {
return (obj != null) && (getClass() == obj.getClass());
}

@Override
public int hashCode() {
return getClass().hashCode();
}

private boolean isTestConfiguration(MetadataReader metadataReader) {
return (metadataReader.getAnnotationMetadata().isAnnotated(TestComponent.class.getName()));
}
Expand Down

0 comments on commit d41e739

Please sign in to comment.