diff options
author | Matti Tahvonen <matti.tahvonen@itmill.com> | 2009-08-13 15:57:15 +0000 |
---|---|---|
committer | Matti Tahvonen <matti.tahvonen@itmill.com> | 2009-08-13 15:57:15 +0000 |
commit | 11d152a9bab1c97b08ec45668641a18674ce55a2 (patch) | |
tree | 9a52f46cc86c33a2034f2eb49a790ebb59863718 /src/com/vaadin/terminal/gwt/server/WebApplicationContext.java | |
parent | dde20e758bea4aac22f73d88313c615bf00b0c59 (diff) | |
download | vaadin-framework-11d152a9bab1c97b08ec45668641a18674ce55a2.tar.gz vaadin-framework-11d152a9bab1c97b08ec45668641a18674ce55a2.zip |
Multiple changes for gwt terminals server side:
* fixes #3181
* improvement for #3054 (not a full fix)
* removed mostly broken equals & hashCode methods from Web and Portlet contexts
* refactoring
svn changeset:8480/svn branch:6.1
Diffstat (limited to 'src/com/vaadin/terminal/gwt/server/WebApplicationContext.java')
-rw-r--r-- | src/com/vaadin/terminal/gwt/server/WebApplicationContext.java | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/src/com/vaadin/terminal/gwt/server/WebApplicationContext.java b/src/com/vaadin/terminal/gwt/server/WebApplicationContext.java index 246de4e392..304282fd9f 100644 --- a/src/com/vaadin/terminal/gwt/server/WebApplicationContext.java +++ b/src/com/vaadin/terminal/gwt/server/WebApplicationContext.java @@ -107,23 +107,6 @@ public class WebApplicationContext implements ApplicationContext, return cx; } - @Override - public boolean equals(Object obj) { - if (session == null) { - return false; - } - - return session.equals(obj); - } - - @Override - public int hashCode() { - if (session == null) { - return -1; - } - return session.hashCode(); - } - /** * Adds the transaction listener to this context. * |