Unnecessary semicolon.

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@137912 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2004-09-01 17:42:56 +00:00
parent 6569b2dfbd
commit a4963fab8e
1 changed files with 2 additions and 2 deletions

View File

@ -21,7 +21,7 @@
* A mutable <code>Object</code>.
*
* @since 2.1
* @version $Id: MutableObject.java,v 1.1 2004/07/08 00:02:35 scolebourne Exp $
* @version $Id: MutableObject.java,v 1.2 2004/09/01 17:42:56 ggregory Exp $
*/
public class MutableObject
implements Mutable, Serializable {
@ -65,7 +65,7 @@ public Object getValue() {
* @param value the value to set
*/
public void setValue(Object value) {
this.value = value;;
this.value = value;
}
//-----------------------------------------------------------------------