diff options
author | Marc Englund <marc.englund@itmill.com> | 2008-10-01 08:08:12 +0000 |
---|---|---|
committer | Marc Englund <marc.englund@itmill.com> | 2008-10-01 08:08:12 +0000 |
commit | b691f7f4a45d5203c99eb7f527df7351096fe044 (patch) | |
tree | 0ef5e621179dd3f174b197eb3076be235c614df1 | |
parent | 439a415f294209c839171825e2723790648e5f68 (diff) | |
download | vaadin-framework-b691f7f4a45d5203c99eb7f527df7351096fe044.tar.gz vaadin-framework-b691f7f4a45d5203c99eb7f527df7351096fe044.zip |
Removed two invalid javadoc comments.
svn changeset:5572/svn branch:trunk
-rw-r--r-- | src/com/itmill/toolkit/terminal/gwt/server/WebApplicationContext.java | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/com/itmill/toolkit/terminal/gwt/server/WebApplicationContext.java b/src/com/itmill/toolkit/terminal/gwt/server/WebApplicationContext.java index 3818c39e81..2bb408ffd6 100644 --- a/src/com/itmill/toolkit/terminal/gwt/server/WebApplicationContext.java +++ b/src/com/itmill/toolkit/terminal/gwt/server/WebApplicationContext.java @@ -102,24 +102,10 @@ public class WebApplicationContext implements ApplicationContext, return cx; } - /** - * Returns <code>true</code> if and only if the argument is not - * <code>null</code> and is a Boolean object that represents the same - * boolean value as this object. - * - * @param obj - * the object to compare with. - * @see java.lang.Object#equals(java.lang.Object) - */ public boolean equals(Object obj) { return session.equals(obj); } - /** - * Returns the hash code value . - * - * @see java.lang.Object#hashCode() - */ public int hashCode() { return session.hashCode(); } |