[core] ParserOptions: Remove unnecessary null check

This commit is contained in:
Andreas Dangel
2020-10-22 16:02:40 +02:00
parent 8def693545
commit 9aa9e8cd97

View File

@ -42,6 +42,6 @@ public class ParserOptions {
@Override
public int hashCode() {
return getSuppressMarker() != null ? getSuppressMarker().hashCode() : 0;
return getSuppressMarker().hashCode();
}
}