fix a small copy-paste issue (#398)

This commit is contained in:
Sky/敖小剑 2020-12-01 07:49:33 +08:00 committed by GitHub
parent cf1c10d85a
commit 8cc33b5598
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -187,7 +187,7 @@ public class State<T> {
return false;
}
if (getError() != null ? !getEtag().equals(that.getError()) : that.getError() != null) {
if (getError() != null ? !getError().equals(that.getError()) : that.getError() != null) {
return false;
}