No effective change - format code, tidy

This commit is contained in:
rbygrave
2015-05-30 21:42:50 +12:00
parent 8403adac90
commit 3d250b0eca
3 changed files with 56 additions and 65 deletions
@@ -65,10 +65,10 @@ public class TransactionEvent implements Serializable {
}
/**
* For BeanListeners the requests they are interested in.
* Return the list of PersistRequestBean's for this transaction.
*/
public TransactionEventBeans getEventBeans() {
return eventBeans;
public List<PersistRequestBean<?>> getPersistRequestBeans() {
return (eventBeans == null) ? null : eventBeans.getRequests();
}
public TransactionEventTable getEventTables() {