Fix compiler warnings

This commit is contained in:
Rossen Stoyanchev 2018-07-27 08:49:45 -04:00
parent 91d17cf628
commit 23bda9a5a7
2 changed files with 10 additions and 0 deletions

View File

@ -183,4 +183,9 @@ public class JsonPathAssertions {
"to avoid being used in error instead of JsonPathAssertions#isEqualTo(String).");
}
@Override
public int hashCode() {
return super.hashCode();
}
}

View File

@ -195,6 +195,11 @@ public class XpathAssertions {
"to avoid being used in error instead of XPathAssertions#isEqualTo(String).");
}
@Override
public int hashCode() {
return super.hashCode();
}
/**
* Lets us be able to use lambda expressions that could throw checked exceptions, since