Skip to content

Commit

Permalink
Process review comments
Browse files Browse the repository at this point in the history
- fix javadoc inconsistency
- adjust log statement

#2021
  • Loading branch information
smcvb committed Aug 30, 2022
1 parent 37b13d3 commit ebdd6d7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ private Object handle(DeadLetter<? extends EventMessage<?>> letter) throws Excep

private EnqueueDecision<EventMessage<?>> onCommit(DeadLetter<? extends EventMessage<?>> letter) {
if (logger.isInfoEnabled()) {
logger.info("Processing dead-letter [{}] was successfully.", letter);
logger.info("Processing dead-letter [{}] was successful.", letter);
}
return Decisions.evict();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public interface EnqueueDecision<M extends Message<?>> {

/**
* The decision whether the {@link DeadLetter dead-letter} should be enqueued in a queue. When {@code false} the
* dead-letter should be evicted instead.
* dead-letter should be evicted.
*
* @return {@code true} if the {@link DeadLetter dead-letter} should be enqueued, {@code false} if the dead-letter
* should be evicted.
Expand Down

0 comments on commit ebdd6d7

Please sign in to comment.