Skip to content

Commit

Permalink
Make container.getAfterRollbackProcessor() public
Browse files Browse the repository at this point in the history
  • Loading branch information
garyrussell committed May 20, 2020
1 parent 36992f8 commit 302a3bc
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,12 @@ public int getPhase() {
return this.phase;
}

protected AfterRollbackProcessor<? super K, ? super V> getAfterRollbackProcessor() {
/**
* Return the currently configured {@link AfterRollbackProcessor}.
* @return the after rollback processor.
* @since 2.2.14
*/
public AfterRollbackProcessor<? super K, ? super V> getAfterRollbackProcessor() {
return this.afterRollbackProcessor;
}

Expand Down

0 comments on commit 302a3bc

Please sign in to comment.