From: Marc Englund Date: Wed, 1 Oct 2008 08:08:12 +0000 (+0000) Subject: Removed two invalid javadoc comments. X-Git-Tag: 6.7.0.beta1~4045 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=b691f7f4a45d5203c99eb7f527df7351096fe044;p=vaadin-framework.git Removed two invalid javadoc comments. svn changeset:5572/svn branch:trunk --- 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 true if and only if the argument is not - * null 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(); }