You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by jr...@apache.org on 2009/04/27 02:14:37 UTC

svn commit: r768837 - /wicket/sandbox/jthomerson/1.4-rc3/wicket/src/main/java/org/apache/wicket/Component.java

Author: jrthomerson
Date: Mon Apr 27 00:14:37 2009
New Revision: 768837

URL: http://svn.apache.org/viewvc?rev=768837&view=rev
Log:
try to fix javadoc bug

Modified:
    wicket/sandbox/jthomerson/1.4-rc3/wicket/src/main/java/org/apache/wicket/Component.java

Modified: wicket/sandbox/jthomerson/1.4-rc3/wicket/src/main/java/org/apache/wicket/Component.java
URL: http://svn.apache.org/viewvc/wicket/sandbox/jthomerson/1.4-rc3/wicket/src/main/java/org/apache/wicket/Component.java?rev=768837&r1=768836&r2=768837&view=diff
==============================================================================
--- wicket/sandbox/jthomerson/1.4-rc3/wicket/src/main/java/org/apache/wicket/Component.java (original)
+++ wicket/sandbox/jthomerson/1.4-rc3/wicket/src/main/java/org/apache/wicket/Component.java Mon Apr 27 00:14:37 2009
@@ -719,7 +719,7 @@
 	 * combination of following attributes:
 	 * <ul>
 	 * <li>Model (indicated by {@link #FLAG_MODEL_SET})
-	 * <li>MetaDataEntry (optionally {@link MetaDataEntry}[] if more metadata entries are present) *
+	 * <li>MetaDataEntry (optionally MetaDataEntry[] if more metadata entries are present) *
 	 * <li>{@link IBehavior}(s) added to component. The behaviors are not stored in separate array,
 	 * they are part of the {@link #data} array (this is in order to save the space of the pointer
 	 * to an empty array as most components have no behaviours). - FIXME - explain why - is this