Skip to content

Commit aec1dc4

Browse files
authored
Merge pull request #721 from rhusar/1.4.x
Minor style fix.
2 parents c46d128 + cd3d3a8 commit aec1dc4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

container/tomcat/src/main/java/org/jboss/modcluster/container/tomcat/TomcatContext.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -159,8 +159,9 @@ public void removeRequestListener(ServletRequestListener listener) {
159159

160160
@Override
161161
public int getActiveSessionCount() {
162-
if (this.context.getManager() == null)
162+
if (this.context.getManager() == null) {
163163
return 0;
164+
}
164165
return this.context.getManager().getActiveSessions();
165166
}
166167

0 commit comments

Comments
 (0)