You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-commits@db.apache.org by kr...@apache.org on 2008/02/13 15:13:44 UTC

svn commit: r627419 - /db/derby/code/trunk/java/engine/org/apache/derby/catalog/types/RoutineAliasInfo.java

Author: kristwaa
Date: Wed Feb 13 06:13:42 2008
New Revision: 627419

URL: http://svn.apache.org/viewvc?rev=627419&view=rev
Log:
DERBY-2917: Fixed JavaDoc warning and removed some unused imports.
Patch file: n/a

Modified:
    db/derby/code/trunk/java/engine/org/apache/derby/catalog/types/RoutineAliasInfo.java

Modified: db/derby/code/trunk/java/engine/org/apache/derby/catalog/types/RoutineAliasInfo.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/catalog/types/RoutineAliasInfo.java?rev=627419&r1=627418&r2=627419&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/catalog/types/RoutineAliasInfo.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/catalog/types/RoutineAliasInfo.java Wed Feb 13 06:13:42 2008
@@ -21,12 +21,9 @@
 
 package org.apache.derby.catalog.types;
 
-import org.apache.derby.iapi.services.io.Formatable;
 import org.apache.derby.iapi.services.io.StoredFormatIds;
 import org.apache.derby.iapi.services.io.ArrayUtil;
-import org.apache.derby.iapi.reference.SQLState;
 import org.apache.derby.iapi.reference.JDBC30Translation;
-import org.apache.derby.catalog.AliasInfo;
 import org.apache.derby.catalog.TypeDescriptor;
 import java.io.IOException;
 import java.io.ObjectInput;
@@ -37,7 +34,7 @@
 /**
  * Describe a routine (procedure or function) alias.
  *
- * @see AliasInfo
+ * @see org.apache.derby.catalog.AliasInfo
  */
 public class RoutineAliasInfo extends MethodAliasInfo
 {
@@ -274,7 +271,7 @@
      * we extract the catalog type and use that.
      * 
      * @param onDiskType The object read that represents the type.
-     * @return
+     * @return A type descriptor.
      */
     private static TypeDescriptor getStoredType(Object onDiskType)
     {