summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2012-08-28 11:29:22 +0300
committerArtur Signell <artur@vaadin.com>2012-08-28 11:31:54 +0300
commitcb2c9d684dd107d4a181c6a432b5fbf69cde6d47 (patch)
tree7a202eba5a8ea75ca7f761094b6aeae8743cc496
parent05964e7adaed15b7bda6ba3c49ce226ec4ff723a (diff)
downloadvaadin-framework-cb2c9d684dd107d4a181c6a432b5fbf69cde6d47.tar.gz
vaadin-framework-cb2c9d684dd107d4a181c6a432b5fbf69cde6d47.zip
Removed unused useDebugIdInDom (#3700)
-rw-r--r--client/src/com/vaadin/terminal/gwt/client/ApplicationConfiguration.java8
1 files changed, 0 insertions, 8 deletions
diff --git a/client/src/com/vaadin/terminal/gwt/client/ApplicationConfiguration.java b/client/src/com/vaadin/terminal/gwt/client/ApplicationConfiguration.java
index 2eccd9bb8c..1150f122b2 100644
--- a/client/src/com/vaadin/terminal/gwt/client/ApplicationConfiguration.java
+++ b/client/src/com/vaadin/terminal/gwt/client/ApplicationConfiguration.java
@@ -207,7 +207,6 @@ public class ApplicationConfiguration implements EntryPoint {
private boolean standalone;
private ErrorMessage communicationError;
private ErrorMessage authorizationError;
- private boolean useDebugIdInDom = true;
private int heartbeatInterval;
private HashMap<Integer, String> unknownComponents;
@@ -327,9 +326,6 @@ public class ApplicationConfiguration implements EntryPoint {
uiId = jsoConfiguration.getConfigInteger(UIConstants.UI_ID_PARAMETER)
.intValue();
- // null -> true
- useDebugIdInDom = jsoConfiguration.getConfigBoolean("useDebugIdInDom") != Boolean.FALSE;
-
// null -> false
standalone = jsoConfiguration.getConfigBoolean("standalone") == Boolean.TRUE;
@@ -401,10 +397,6 @@ public class ApplicationConfiguration implements EntryPoint {
return getJsoConfiguration(id).getApplicationVersion();
}
- public boolean useDebugIdInDOM() {
- return useDebugIdInDom;
- }
-
public Class<? extends ServerConnector> getConnectorClassByEncodedTag(
int tag) {
Class<? extends ServerConnector> type = classes.get(tag);