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 [EMAIL PROTECTED] 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;
        }
 
        /**


Reply via email to