Skip to content

Commit

Permalink
[JBWS-4430]:Improve the code
Browse files Browse the repository at this point in the history
  • Loading branch information
jimma committed Oct 24, 2024
1 parent 25dd628 commit c026d31
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public class HandlerAuthInterceptor extends AbstractPhaseInterceptor<Message>
{
private static final String KEY = HandlerAuthInterceptor.class.getName() + ".SECURITY_EXCEPTION";

private boolean skip = false;
private final boolean skip;
public HandlerAuthInterceptor()
{
super(Phase.PRE_PROTOCOL_FRONTEND);
Expand Down Expand Up @@ -109,7 +109,7 @@ private boolean isOutbound(Message message, Exchange ex) {
private static class JBossWSHandlerChainInvoker extends HandlerChainInvoker
{

private boolean skip = false;
private final boolean skip;
public JBossWSHandlerChainInvoker(@SuppressWarnings("rawtypes") List<Handler> hc, boolean isOutbound)
{
super(hc, isOutbound);
Expand Down

0 comments on commit c026d31

Please sign in to comment.