mirror of
https://github.com/vran-dev/databasir.git
synced 2025-09-20 18:59:18 +08:00
fix: diff result table show added but overview show none
This commit is contained in:
@@ -6,4 +6,12 @@ public enum DiffType {
|
||||
public static boolean isModified(DiffType type) {
|
||||
return type != null && type != NONE;
|
||||
}
|
||||
|
||||
public boolean isAdded() {
|
||||
return this == ADDED;
|
||||
}
|
||||
|
||||
public boolean isNone() {
|
||||
return this == NONE;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user