diff options
author | Johannes Dahlström <johannes.dahlstrom@vaadin.com> | 2012-01-23 13:11:02 +0000 |
---|---|---|
committer | Johannes Dahlström <johannes.dahlstrom@vaadin.com> | 2012-01-23 13:11:02 +0000 |
commit | 0b8a57ad0a0b776c0c89aaf7fdc65e5f2c9ac726 (patch) | |
tree | 0354b2ea5056e4805134394a10d25ecea4c16a65 /src | |
parent | 7b2e97499efa079a055eb4a8d2b932f216d3666f (diff) | |
download | vaadin-framework-0b8a57ad0a0b776c0c89aaf7fdc65e5f2c9ac726.tar.gz vaadin-framework-0b8a57ad0a0b776c0c89aaf7fdc65e5f2c9ac726.zip |
#8241 Removed debug message, added reference to ticket
svn changeset:22746/svn branch:6.8
Diffstat (limited to 'src')
-rw-r--r-- | src/com/vaadin/terminal/gwt/client/ApplicationConnection.java | 4 |
1 files changed, 1 insertions, 3 deletions
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; } } |