Use common library to read file content.
[javainspect.git] / src / main / java / eu / svjatoslav / inspector / java / methods / Annotation.java
index da60061..d3f282f 100755 (executable)
@@ -1,7 +1,7 @@
 /*
  * JavaInspect - Utility to visualize java software
- * Copyright (C) 2013-2015, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
- * 
+ * Copyright (C) 2013-2020, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
+ *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of version 3 of the GNU Lesser General Public License
  * or later as published by the Free Software Foundation.
@@ -15,32 +15,32 @@ import eu.svjatoslav.commons.string.tokenizer.TokenizerMatch;
 
 public class Annotation {
 
-       private String name;
+    private String name;
 
-       public Annotation(final Tokenizer tokenizer) throws InvalidSyntaxException {
+    public Annotation(final Tokenizer tokenizer) throws InvalidSyntaxException {
 
-               name = tokenizer.getNextToken().token;
+        name = tokenizer.getNextToken().token;
 
-               if (!tokenizer.probeNextToken("("))
-                       return;
+        if (!tokenizer.consumeIfNextToken("("))
+            return;
 
-               int depth = 1;
+        int depth = 1;
 
-               while (true) {
-                       final TokenizerMatch token = tokenizer.getNextToken();
+        while (true) {
+            final TokenizerMatch token = tokenizer.getNextToken();
 
-                       if (token == null)
-                               return;
+            if (token == null)
+                return;
 
-                       if ("(".equals(token.token))
-                               depth++;
-                       if (")".equals(token.token))
-                               depth--;
+            if ("(".equals(token.token))
+                depth++;
+            if (")".equals(token.token))
+                depth--;
 
-                       if (depth == 0)
-                               return;
-               }
+            if (depth == 0)
+                return;
+        }
 
-       }
+    }
 
 }