рефакторинг адресатов баг репортов
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
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.equals(o2.bugreport_id) && o1.email.equals(o2.email);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user