forked from Qortal/qortal
eaad565765
This allows them to be excluded from final built package. pom.xml and .classpath updated Unable to test due to lack of JUnit 5 in Eclipse Neon
7 lines
121 B
Java
7 lines
121 B
Java
package test.utils;
|
|
|
|
public interface EqualityComparer<T> {
|
|
boolean equals(T first, T second);
|
|
int hashCode(T item);
|
|
}
|