You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pivot.apache.org by ni...@apache.org on 2009/08/10 06:53:39 UTC

svn commit: r802646 - /incubator/pivot/trunk/core/src/org/apache/pivot/beans/BeanDictionary.java

Author: niclas
Date: Mon Aug 10 04:53:38 2009
New Revision: 802646

URL: http://svn.apache.org/viewvc?rev=802646&view=rev
Log:
Wrong parameter name.
(Taking the liberty to make a direct commit even though I am not a committer, to save community time for such a small change.)

Modified:
    incubator/pivot/trunk/core/src/org/apache/pivot/beans/BeanDictionary.java

Modified: incubator/pivot/trunk/core/src/org/apache/pivot/beans/BeanDictionary.java
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/core/src/org/apache/pivot/beans/BeanDictionary.java?rev=802646&r1=802645&r2=802646&view=diff
==============================================================================
--- incubator/pivot/trunk/core/src/org/apache/pivot/beans/BeanDictionary.java (original)
+++ incubator/pivot/trunk/core/src/org/apache/pivot/beans/BeanDictionary.java Mon Aug 10 04:53:38 2009
@@ -462,15 +462,11 @@
     /**
      * Returns the type of a property.
      *
-     * @param type
-     * The bean class.
+     * @param beanClass The bean class.
      *
-     * @param key
-     * The property name.
+     * @param key The property name.
      *
-     * @return
-     * The type of the property, or <tt>null</tt> if no such bean property
-     * exists.
+     * @return The type of the property, or <tt>null</tt> if no such bean property exists.
      */
     public static Class<?> getType(Class<?> beanClass, String key) {
         if (key == null) {