2025-03-27 15:12:09 +03:00
|
|
|
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) {
|
2025-12-16 02:32:20 +03:00
|
|
|
return o1.bugreport_id==o2.bugreport_id && o1.email.equals(o2.email);
|
2025-03-27 15:12:09 +03:00
|
|
|
}
|
|
|
|
|
}
|