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 / StringDataType.java
index 39487ea..787ccda 100644 (file)
 
 package org.onap.aai.schemaif.definitions.types;
 
-public class StringDataType extends DataType {    
+public class StringDataType extends DataType {
     public StringDataType() {
         super(Type.STRING);
     }
 
     @Override
     public Object validateValue(String value) {
-        // TODO:  In Tosca, you can impose constraints such as string length, regex matches, valid values, 
-        // string length maximums, etc.  In future we can add this type of validation
+        // TODO: In Tosca, you can impose constraints such as string length, regex matches, valid values,
+        // string length maximums, etc. In future we can add this type of validation
         return value;
     }
 }