Mass removal of all Tabs (Style Warnings)
[aaf/authz.git] / misc / rosetta / src / main / java / org / onap / aaf / misc / rosetta / Parse.java
index 657baf5..d068530 100644 (file)
@@ -25,21 +25,21 @@ import org.onap.aaf.misc.env.Env;
 import org.onap.aaf.misc.env.TimeTaken;
 
 public interface Parse<IN, S> {
-       public Parsed<S> parse(IN in, Parsed<S> parsed) throws ParseException;
-       
-       // EVENTS
-       public static final char NONE = 0;
-       public static final char START_DOC = 1;
-       public static final char END_DOC = 2;
-       public static final char ATTRIB = 3;
-       
-       public static final char NEXT = ',';
-       public static final char START_OBJ = '{';
-       public static final char END_OBJ = '}';
-       public static final char START_ARRAY = '[';
-       public static final char END_ARRAY = ']';
-       
-       public Parsed<S> newParsed() throws ParseException;
-       public TimeTaken start(Env env); 
-       
+    public Parsed<S> parse(IN in, Parsed<S> parsed) throws ParseException;
+    
+    // EVENTS
+    public static final char NONE = 0;
+    public static final char START_DOC = 1;
+    public static final char END_DOC = 2;
+    public static final char ATTRIB = 3;
+    
+    public static final char NEXT = ',';
+    public static final char START_OBJ = '{';
+    public static final char END_OBJ = '}';
+    public static final char START_ARRAY = '[';
+    public static final char END_ARRAY = ']';
+    
+    public Parsed<S> newParsed() throws ParseException;
+    public TimeTaken start(Env env); 
+    
 }