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 / BooleanDataType.java
index 52fb4ca..a1d3513 100644 (file)
@@ -21,8 +21,7 @@
 
 package org.onap.aai.schemaif.definitions.types;
 
-
-public class BooleanDataType extends DataType {    
+public class BooleanDataType extends DataType {
     public BooleanDataType() {
         super(Type.BOOL);
     }
@@ -32,7 +31,7 @@ public class BooleanDataType extends DataType {
         if (value.equalsIgnoreCase("true") || (value.equalsIgnoreCase("false"))) {
             return Boolean.parseBoolean(value);
         }
-        
+
         return null;
     }
 }