Reduce the number of problems in aai-common by removing unused imports
[aai/aai-common.git] / aai-schema-abstraction / src / main / java / org / onap / aai / schemaif / definitions / types / DataType.java
index 2e2884b..a51d70f 100644 (file)
@@ -23,14 +23,7 @@ package org.onap.aai.schemaif.definitions.types;
 
 public abstract class DataType {
     public enum Type {
-        STRING,
-        BOOL,
-        INT,
-        LONG,
-        FLOAT,
-        LIST,
-        MAP,
-        COMPLEX
+        STRING, BOOL, INT, LONG, FLOAT, LIST, MAP, COMPLEX
     }
 
     private final Type type;