From 939095af2b1349388cd568043cce91f9f9a1cb98 Mon Sep 17 00:00:00 2001 From: michaelvogt Date: Fri, 28 Jun 2013 14:00:25 +0300 Subject: Debug window poll interval claims interval is in seconds and not milliseconds (#12098) Change-Id: I26f86fdeafbdf15d02d40b86abb3f23da4f38543 --- client/src/com/vaadin/client/debug/internal/InfoSection.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'client') 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); -- cgit v1.2.3