Skip to content

Commit

Permalink
make fields private in FnConsumer
Browse files Browse the repository at this point in the history
  • Loading branch information
jimpil committed Aug 6, 2023
1 parent c910165 commit df1d332
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/java/com/novemberain/langohr/FnConsumer.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
import clojure.lang.Keyword;
import clojure.lang.IFn;

public class FnConsumer extends DefaultConsumer {
public final class FnConsumer extends DefaultConsumer {

final IFn handleConsumeOK, handleCancel, handleCancelOK, handleShutdownSignal, handleRecoverOK, handleDelivery;
private final IFn handleConsumeOK, handleCancel, handleCancelOK, handleShutdownSignal, handleRecoverOK, handleDelivery;

public static Channel asNonRecovering(Channel c) {
if (c instanceof AutorecoveringChannel) {
Expand Down

0 comments on commit df1d332

Please sign in to comment.