Subversion Repository Public Repository

litesoft

Diff Revisions 150 vs 151 for /trunk/Java/core/Server/src/org/litesoft/orsup/transact/SucceededTransactionCommitListener.java

Diff revisions: vs.
  @@ -7,8 +7,7 @@
7 7
8 8 public interface SucceededTransactionCommitListener
9 9 {
10 - public static final SucceededTransactionCommitListener[] EMPTY_ARRAY =
11 - new SucceededTransactionCommitListener[0];
10 + public static final SucceededTransactionCommitListener[] EMPTY_ARRAY = new SucceededTransactionCommitListener[0];
12 11
13 12 /**
14 13 * Look at the pCommitParticipants and if you are interested in any create a
  @@ -19,6 +18,5 @@
19 18 *
20 19 * @return !null means you want to be notified that the Transaction Commit Succeeded!
21 20 */
22 - void successfulCommitBeforeClear( String pTransactionsSourceId, Set<TransCommitEntry> pEntries,
23 - TransParticipantsManager pTransParticipantsManager );
21 + void successfulCommitBeforeClear( String pTransactionsSourceId, Set<TransCommitEntry> pEntries, TransParticipantsManager pTransParticipantsManager );
24 22 }