fix: diff response error

This commit is contained in:
vran
2022-05-27 09:58:39 +08:00
parent a3a8fd7154
commit 8ccd230c98
3 changed files with 37 additions and 10 deletions

View File

@@ -11,6 +11,10 @@ public enum DiffType {
return this == ADDED;
}
public boolean isRemoved() {
return this == REMOVED;
}
public boolean isNone() {
return this == NONE;
}