Bringing out some variables

This commit is contained in:
Efratror
2023-03-19 08:36:41 +01:00
parent 619a2242e3
commit 2ca4a377ec
2 changed files with 5 additions and 3 deletions
+3 -1
View File
@@ -163,7 +163,9 @@ public class ASTUtils {
}
protected static List<SimpleName> findAllOccurrences(ASTNode root, String bindingKey) {
public static List<SimpleName> findAllOccurrences(ASTNode root,
String bindingKey
) {
List<SimpleName> occurrences = new ArrayList<>();
root.getRoot().accept(new ASTVisitor() {
@Override
@@ -18,6 +18,6 @@ public class SketchInterval {
public final int startTabOffset;
public final int stopTabOffset;
final int startPdeOffset;
final int stopPdeOffset;
public final int startPdeOffset;
public final int stopPdeOffset;
}