]> source.dussan.org Git - vaadin-framework.git/commitdiff
Debug window poll interval claims interval is in seconds and not
authormichaelvogt <michael@vaadin.com>
Fri, 28 Jun 2013 11:00:25 +0000 (14:00 +0300)
committermichaelvogt <michael@vaadin.com>
Fri, 28 Jun 2013 11:00:25 +0000 (14:00 +0300)
milliseconds (#12098)

Change-Id: I26f86fdeafbdf15d02d40b86abb3f23da4f38543

client/src/com/vaadin/client/debug/internal/InfoSection.java

index ade3bdd52db279fb5b2de4d194a1078cc7383b2c..38d7290fdef26f371e7829461743c0b7de7c158b 100644 (file)
@@ -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);