No effective change - format code

This commit is contained in:
rbygrave
2015-02-04 21:09:12 +13:00
parent 84e853bcfa
commit a838bc38c5
@@ -123,13 +123,11 @@ public class BeanLifecycleAdapterFactory {
private void invoke(Method method, Object bean) {
try {
method.invoke(bean);
}
catch (InvocationTargetException e) {
throw new PersistenceException("Error invoking lifecycle method", e);
}
catch (IllegalAccessException e) {
throw new PersistenceException("Error invoking lifecycle method", e);
}
} catch (InvocationTargetException e) {
throw new PersistenceException("Error invoking lifecycle method", e);
} catch (IllegalAccessException e) {
throw new PersistenceException("Error invoking lifecycle method", e);
}
}
private void invoke(Method method, BeanPersistRequest<?> request) {