You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by da...@apache.org on 2007/08/02 23:44:55 UTC

svn commit: r562271 - /wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/model/AbstractPropertyModel.java

Author: dashorst
Date: Thu Aug  2 14:44:54 2007
New Revision: 562271

URL: http://svn.apache.org/viewvc?view=rev&rev=562271
Log:
Fixed typo in javadoc

Modified:
    wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/model/AbstractPropertyModel.java

Modified: wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/model/AbstractPropertyModel.java
URL: http://svn.apache.org/viewvc/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/model/AbstractPropertyModel.java?view=diff&rev=562271&r1=562270&r2=562271
==============================================================================
--- wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/model/AbstractPropertyModel.java (original)
+++ wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/model/AbstractPropertyModel.java Thu Aug  2 14:44:54 2007
@@ -30,7 +30,7 @@
  * Serves as a base class for different kinds of property models. By default,
  * this class uses {@link PropertyResolver} to resolve expressions on the target
  * model object. Note that the property resolver by default provides access to
- * private members and methods. If guaranteeing encapsultion of the target
+ * private members and methods. If guaranteeing encapsulation of the target
  * objects is a big concern, you should consider using an alternative
  * implementation.
  * 
@@ -63,7 +63,7 @@
 			throw new IllegalArgumentException("Parameter modelObject cannot be null");
 		}
 
-		this.target = modelObject;
+		target = modelObject;
 	}
 
 	/**