* remove comparison of identical values the comparison `tookInMillis == tookInMillis` is always true. * add comparison between tookInMillis
This commit is contained in:
parent
dc08feadc6
commit
cc0c876a8d
|
@ -149,7 +149,7 @@ public class TermVectorsResponse {
|
||||||
&& Objects.equals(id, other.id)
|
&& Objects.equals(id, other.id)
|
||||||
&& docVersion == other.docVersion
|
&& docVersion == other.docVersion
|
||||||
&& found == other.found
|
&& found == other.found
|
||||||
&& tookInMillis == tookInMillis
|
&& tookInMillis == other.tookInMillis
|
||||||
&& Objects.equals(termVectorList, other.termVectorList);
|
&& Objects.equals(termVectorList, other.termVectorList);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue