From 0b49d400eab3ada7078b81acbad3dd1da8847dc9 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Johannes=20Dahlstr=C3=B6m?= Date: Thu, 8 Nov 2012 16:29:19 +0200 Subject: [PATCH] Rename DefaultDeploymentConfiguration.idleRootCleanupEnabled to idleUICleanupEnabled Change-Id: I618b23259b24436b985e226512a0fae3b380433b --- .../com/vaadin/server/DefaultDeploymentConfiguration.java | 6 +++--- 1 file 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"); } -- 2.39.5