No effective change - code cleanup - removed not required throws

This commit is contained in:
Robin Bygrave
2015-08-01 19:20:51 +12:00
parent 204b9ca6e5
commit 334a8b66bd
3 changed files with 3 additions and 3 deletions
@@ -518,7 +518,7 @@ public class BeanProperty implements ElPropertyValue {
scalarType.loadIgnore(ctx.getDataReader());
}
public void load(SqlBeanLoad sqlBeanLoad) throws SQLException {
public void load(SqlBeanLoad sqlBeanLoad) {
sqlBeanLoad.load(this);
}
@@ -104,7 +104,7 @@ public class BatchedPstmt {
}
}
private void postExecute() throws SQLException {
private void postExecute() {
for (int i = 0; i < list.size(); i++) {
list.get(i).postExecute();
}
@@ -80,7 +80,7 @@ public abstract class DmlHandler implements PersistHandler, BindableRequest {
/**
* Check the rowCount.
*/
protected void checkRowCount(int rowCount) throws SQLException, OptimisticLockException {
protected void checkRowCount(int rowCount) throws OptimisticLockException {
try {
persistRequest.checkRowCount(rowCount);
persistRequest.postExecute();