From 7115e50f3286c830fd390acfc5ef52cc52a98a9a Mon Sep 17 00:00:00 2001 From: Johannes Dahlström Date: Fri, 20 Jan 2012 13:07:40 +0000 Subject: #8241 Removed debug message, added reference to ticket svn changeset:22736/svn branch:6.7 --- src/com/vaadin/terminal/gwt/client/ApplicationConnection.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src') diff --git a/src/com/vaadin/terminal/gwt/client/ApplicationConnection.java b/src/com/vaadin/terminal/gwt/client/ApplicationConnection.java index 0bb311600c..944d9b5974 100644 --- a/src/com/vaadin/terminal/gwt/client/ApplicationConnection.java +++ b/src/com/vaadin/terminal/gwt/client/ApplicationConnection.java @@ -544,15 +544,13 @@ public class ApplicationConnection { * the request and served non-UIDL content (for * instance, a login page if the session has expired.) * If the response contains a magic substring, do a - * synchronous refresh. + * synchronous refresh. See #8241. */ MatchResult refreshToken = RegExp.compile( UIDL_REFRESH_TOKEN + "(:\\s*(.*?))?(\\s|$)") .exec(response.getText()); if (refreshToken != null) { redirect(refreshToken.getGroup(2)); - VConsole.log("*** REDIRECT : " - + refreshToken.getGroup(2)); return; } } -- cgit v1.2.3