mirror of https://github.com/dapr/java-sdk.git
fix a small copy-paste issue (#398)
This commit is contained in:
parent
cf1c10d85a
commit
8cc33b5598
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue