no message

This commit is contained in:
2024-10-20 17:54:09 +03:00
parent a042f24833
commit f6da288ec5
15 changed files with 82 additions and 61 deletions

View File

@@ -30,16 +30,7 @@ public class DVMPackageDBTable extends iDBTable<DVMPackage> {
protected DataSetControlForm createUI(JPanel mountPanel) {
return new DVMPackagesForm(this, mountPanel);
}
@Override
public Comparator<DVMPackage> getComparator() {
return new Comparator<DVMPackage>() {
@Override
public int compare(DVMPackage o1, DVMPackage o2) {
return o2.id - o1.id;
}
};
// return Comparator.comparingInt(o -> o.).reversed();
}
@Override
public PassCode_ getDeletePassCode() {
return PassCode.DeleteDVMPackage;