Files
VisualSapfor/src/_VisualDVM/ComponentsServer/BugReportRecipient/BugReportRecipientsDBTable.java
02090095 6da9698285 ++
смена ключей багов на численнные.
2025-12-16 02:32:20 +03:00

12 lines
439 B
Java

package _VisualDVM.ComponentsServer.BugReportRecipient;
import Common.Database.Tables.iDBTable;
public class BugReportRecipientsDBTable extends iDBTable<BugReportRecipient> {
public BugReportRecipientsDBTable() {
super(BugReportRecipient.class);
}
@Override
public boolean isEqual(BugReportRecipient o1, BugReportRecipient o2) {
return o1.bugreport_id==o2.bugreport_id && o1.email.equals(o2.email);
}
}