summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--server/src/com/vaadin/server/DefaultDeploymentConfiguration.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/server/src/com/vaadin/server/DefaultDeploymentConfiguration.java b/server/src/com/vaadin/server/DefaultDeploymentConfiguration.java
index 07a810c64c..985ae16f28 100644
--- a/server/src/com/vaadin/server/DefaultDeploymentConfiguration.java
+++ b/server/src/com/vaadin/server/DefaultDeploymentConfiguration.java
@@ -33,7 +33,7 @@ public class DefaultDeploymentConfiguration implements DeploymentConfiguration {
private boolean xsrfProtectionEnabled;
private int resourceCacheTime;
private int heartbeatInterval;
- private boolean idleRootCleanupEnabled;
+ private boolean idleUICleanupEnabled;
private final Class<?> systemPropertyBaseClass;
/**
@@ -170,7 +170,7 @@ public class DefaultDeploymentConfiguration implements DeploymentConfiguration {
@Override
public boolean isIdleUICleanupEnabled() {
- return idleRootCleanupEnabled;
+ return idleUICleanupEnabled;
}
/**
@@ -227,7 +227,7 @@ public class DefaultDeploymentConfiguration implements DeploymentConfiguration {
}
private void checkIdleUICleanup() {
- idleRootCleanupEnabled = getApplicationOrSystemProperty(
+ idleUICleanupEnabled = getApplicationOrSystemProperty(
Constants.SERVLET_PARAMETER_CLOSE_IDLE_UIS, "false").equals(
"true");
}