We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
MergingDocument
Is your feature request related to a problem? Please describe. MergingDocument should override the equals method
Describe the solution you'd like add following code to MergingDocument
@Override public boolean equals(Object o) { if (this == o) { return true; } else if (o instanceof Document document) { return this.entrySet().equals(document.entrySet()); } else { return false; } }
Describe alternatives you've considered
Additional context
Is your feature request related to a problem? Please describe.
MergingDocumentshould override the equals methodDescribe the solution you'd like
add following code to
MergingDocumentDescribe alternatives you've considered
Additional context