summaryrefslogtreecommitdiffstats
path: root/client
diff options
context:
space:
mode:
authormichaelvogt <michael@vaadin.com>2013-06-28 14:00:25 +0300
committermichaelvogt <michael@vaadin.com>2013-06-28 14:00:25 +0300
commit939095af2b1349388cd568043cce91f9f9a1cb98 (patch)
tree647c39caffbc59683713813556397a209f48b971 /client
parent6c10136ae17f62c37c65805ff8847d86ce1733f7 (diff)
downloadvaadin-framework-939095af2b1349388cd568043cce91f9f9a1cb98.tar.gz
vaadin-framework-939095af2b1349388cd568043cce91f9f9a1cb98.zip
Debug window poll interval claims interval is in seconds and not
milliseconds (#12098) Change-Id: I26f86fdeafbdf15d02d40b86abb3f23da4f38543
Diffstat (limited to 'client')
-rw-r--r--client/src/com/vaadin/client/debug/internal/InfoSection.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/client/src/com/vaadin/client/debug/internal/InfoSection.java b/client/src/com/vaadin/client/debug/internal/InfoSection.java
index ade3bdd52d..38d7290fde 100644
--- a/client/src/com/vaadin/client/debug/internal/InfoSection.java
+++ b/client/src/com/vaadin/client/debug/internal/InfoSection.java
@@ -165,10 +165,12 @@ public class InfoSection implements Section {
addRow("Widget set", GWT.getModuleName());
addRow("Theme", connection.getConfiguration().getThemeName());
- String communicationMethodInfo = connection.getCommunicationMethodName();
+ String communicationMethodInfo = connection
+ .getCommunicationMethodName();
int pollInterval = connection.getUIConnector().getState().pollInterval;
if (pollInterval > 0) {
- communicationMethodInfo += " (poll interval " + pollInterval + "s)";
+ communicationMethodInfo += " (poll interval " + pollInterval
+ + "ms)";
}
addRow("Communication method", communicationMethodInfo);