You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by el...@apache.org on 2007/12/26 17:06:02 UTC

svn commit: r606917 - /directory/apacheds/branches/bigbang/core-plugin/src/main/antlr/openldap.g

Author: elecharny
Date: Wed Dec 26 08:05:52 2007
New Revision: 606917

URL: http://svn.apache.org/viewvc?rev=606917&view=rev
Log:
Replaced some import ...*; by the explicit declaration of the imported elements.
Removed some warnings with generics

Modified:
    directory/apacheds/branches/bigbang/core-plugin/src/main/antlr/openldap.g

Modified: directory/apacheds/branches/bigbang/core-plugin/src/main/antlr/openldap.g
URL: http://svn.apache.org/viewvc/directory/apacheds/branches/bigbang/core-plugin/src/main/antlr/openldap.g?rev=606917&r1=606916&r2=606917&view=diff
==============================================================================
--- directory/apacheds/branches/bigbang/core-plugin/src/main/antlr/openldap.g (original)
+++ directory/apacheds/branches/bigbang/core-plugin/src/main/antlr/openldap.g Wed Dec 26 08:05:52 2007
@@ -35,8 +35,12 @@
  */
 package org.apache.directory.server.core.tools.schema;
 
-import java.util.* ;
-import org.apache.directory.shared.ldap.schema.*;
+import java.util.ArrayList;
+import java.util.Collections;
+import java.util.List;
+
+import org.apache.directory.shared.ldap.schema.ObjectClassTypeEnum;
+import org.apache.directory.shared.ldap.schema.UsageEnum;
 
 }
 
@@ -117,8 +121,8 @@
 {
     public static final String[] EMPTY = new String[0];
 
-    private List attributeTypes = new ArrayList();
-    private List objectClasses = new ArrayList();
+    private List<AttributeTypeLiteral> attributeTypes = new ArrayList<AttributeTypeLiteral>();
+    private List<ObjectClassLiteral> objectClasses = new ArrayList<ObjectClassLiteral>();
     private ParserMonitor monitor = null;