[jboss-cvs] JBossAS SVN: r81423 - projects/jboss-reflect/branches/Branch_2_0/src/main/java/org/jboss/reflect/plugins/introspection.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Fri Nov 21 05:53:28 EST 2008


Author: alesj
Date: 2008-11-21 05:53:28 -0500 (Fri, 21 Nov 2008)
New Revision: 81423

Modified:
   projects/jboss-reflect/branches/Branch_2_0/src/main/java/org/jboss/reflect/plugins/introspection/ParameterizedClassInfo.java
Log:
Fix typo.

Modified: projects/jboss-reflect/branches/Branch_2_0/src/main/java/org/jboss/reflect/plugins/introspection/ParameterizedClassInfo.java
===================================================================
--- projects/jboss-reflect/branches/Branch_2_0/src/main/java/org/jboss/reflect/plugins/introspection/ParameterizedClassInfo.java	2008-11-21 10:52:30 UTC (rev 81422)
+++ projects/jboss-reflect/branches/Branch_2_0/src/main/java/org/jboss/reflect/plugins/introspection/ParameterizedClassInfo.java	2008-11-21 10:53:28 UTC (rev 81423)
@@ -32,7 +32,7 @@
 
 /**
  * ParameterizedClassInfo.
- * 
+ *
  * @author <a href="adrian at jboss.com">Adrian Brock</a>
  * @version $Revision: 1.1 $
  */
@@ -40,28 +40,28 @@
 {
    /** The serialVersionUID */
    private static final long serialVersionUID = 2;
-   
+
    /** The factory */
    protected transient IntrospectionTypeInfoFactoryImpl factory;
-   
+
    /** The parameterized type */
    transient ParameterizedType parameterizedType;
-   
+
    /** The owner type */
    private TypeInfo ownerType = ClassInfoImpl.UNKNOWN_TYPE;
-   
+
    /** The type arguments */
    private TypeInfo[] typeArguments = ClassInfoImpl.UNKNOWN_TYPES;
-   
+
    /** The component type */
    private transient TypeInfo componentType = ClassInfoImpl.UNKNOWN_TYPE;
-   
+
    /** The key type */
    private transient TypeInfo keyType = ClassInfoImpl.UNKNOWN_TYPE;
-   
+
    /** The key type */
    private transient TypeInfo valueType = ClassInfoImpl.UNKNOWN_TYPE;
-   
+
    /**
     * Create a new ParameterizedClassInfo.
     *
@@ -115,7 +115,7 @@
    @Override
    public TypeInfo getKeyType()
    {
-      if (keyType == ClassInfoImpl.UNKNOWN_TYPE);
+      if (keyType == ClassInfoImpl.UNKNOWN_TYPE)
          keyType = factory.getKeyType(this);
       return keyType;
    }




More information about the jboss-cvs-commits mailing list