Removed unnecessary throws clause
This commit is contained in:
parent
3f85fb95cd
commit
15c5df4036
@ -42,8 +42,6 @@ import org.jooq.Record;
|
||||
import org.jooq.UniqueKey;
|
||||
import org.jooq.UpdatableRecord;
|
||||
import org.jooq.UpdatableTable;
|
||||
import org.jooq.exception.DataAccessException;
|
||||
import org.jooq.exception.DataChangedException;
|
||||
|
||||
/**
|
||||
* A record implementation for a record holding a primary key
|
||||
@ -89,7 +87,7 @@ public class UpdatableRecordImpl<R extends UpdatableRecord<R>> extends TableReco
|
||||
}
|
||||
|
||||
@Override
|
||||
public final int deleteLocked() throws DataAccessException, DataChangedException {
|
||||
public final int deleteLocked() {
|
||||
return deleteLockedUsing(getMainKey().getFieldsArray());
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user