mirror of
https://github.com/vran-dev/databasir.git
synced 2025-08-11 19:35:21 +08:00
fix: diff result table show added but overview show none (#200)
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