summaryrefslogtreecommitdiffstats
path: root/server/src
diff options
context:
space:
mode:
authorJohannes Dahlström <johannesd@vaadin.com>2012-11-08 16:29:19 +0200
committerJohannes Dahlström <johannesd@vaadin.com>2012-11-09 14:41:44 +0200
commit0b49d400eab3ada7078b81acbad3dd1da8847dc9 (patch)
tree019725c02a6d88052e6bea1fcbcbc2fc8dbfaadd /server/src
parente62226e696e8280055544d9cd59ea40066d61af1 (diff)
downloadvaadin-framework-0b49d400eab3ada7078b81acbad3dd1da8847dc9.tar.gz
vaadin-framework-0b49d400eab3ada7078b81acbad3dd1da8847dc9.zip
Rename DefaultDeploymentConfiguration.idleRootCleanupEnabled to idleUICleanupEnabled
Change-Id: I618b23259b24436b985e226512a0fae3b380433b
Diffstat (limited to 'server/src')
-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");
}