Skip to content

Commit

Permalink
Issue #4697 Fix checkstyle
Browse files Browse the repository at this point in the history
Signed-off-by: Jan Bartel <janb@webtide.com>
  • Loading branch information
janbartel committed Mar 24, 2020
1 parent 8180971 commit fa0ea2a
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ public void onStartup(Set<Class<?>> c, ServletContext ctx) throws ServletExcepti
throw new IllegalStateException("MySCI already called");
ctx.setAttribute("MySCI.startup", Boolean.TRUE);
ctx.addListener(new MyContextListener(callSessionTimeouts, timeout));

//test that SCI can call the sessionmodes methods
try
{
Expand All @@ -142,7 +142,7 @@ public void onStartup(Set<Class<?>> c, ServletContext ctx) throws ServletExcepti
}
catch (UnsupportedOperationException e)
{
ctx.setAttribute("MySCI.defaultSessionTrackingModes", Boolean.FALSE);
ctx.setAttribute("MySCI.defaultSessionTrackingModes", Boolean.FALSE);
}
try
{
Expand All @@ -151,7 +151,7 @@ public void onStartup(Set<Class<?>> c, ServletContext ctx) throws ServletExcepti
}
catch (UnsupportedOperationException e)
{
ctx.setAttribute("MySCI.effectiveSessionTrackingModes", Boolean.FALSE);
ctx.setAttribute("MySCI.effectiveSessionTrackingModes", Boolean.FALSE);
}
try
{
Expand All @@ -160,9 +160,9 @@ public void onStartup(Set<Class<?>> c, ServletContext ctx) throws ServletExcepti
}
catch (UnsupportedOperationException e)
{
ctx.setAttribute("MySCI.setSessionTrackingModes", Boolean.FALSE);
ctx.setAttribute("MySCI.setSessionTrackingModes", Boolean.FALSE);
}

if (callSessionTimeouts)
{
try
Expand Down

0 comments on commit fa0ea2a

Please sign in to comment.