Skip to content

Commit

Permalink
checkstyle fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Mesut Celik committed Aug 4, 2014
1 parent f2e9d24 commit 6598f6d
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions hazelcast-wm/src/main/java/com/hazelcast/web/WebFilter.java
Original file line number Diff line number Diff line change
Expand Up @@ -678,13 +678,7 @@ public void invalidate() {
}

public boolean isNew() {
boolean sessionStatus = originalSession.isNew();

if (sessionStatus == true && clusterWideNew) {
return true;
}

return false;
return originalSession.isNew() && clusterWideNew;
}

public void putValue(final String name, final Object value) {
Expand Down

0 comments on commit 6598f6d

Please sign in to comment.