diff options
-rw-r--r-- | client/src/com/vaadin/client/debug/internal/InfoSection.java | 6 |
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); |