diff options
author | George Fraser <george@fivetran.com> | 2019-01-06 19:06:02 -0800 |
---|---|---|
committer | George Fraser <george@fivetran.com> | 2019-01-06 19:06:02 -0800 |
commit | f7e5c24336139763d27730723303ea72d17c8068 (patch) | |
tree | 235492e8686662ea8858dca2498ecaa016993246 /src | |
parent | af922a08f685898cca00da4e10f45cbf7de5cd4a (diff) | |
download | java-language-server-f7e5c24336139763d27730723303ea72d17c8068.zip |
Unused
Diffstat (limited to 'src')
-rw-r--r-- | src/main/java/org/javacs/CompileFocus.java | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/main/java/org/javacs/CompileFocus.java b/src/main/java/org/javacs/CompileFocus.java index c7875be..8ee8273 100644 --- a/src/main/java/org/javacs/CompileFocus.java +++ b/src/main/java/org/javacs/CompileFocus.java @@ -440,18 +440,6 @@ public class CompileFocus { return enclosingClass.asType(); } - private List<ExecutableElement> thisMethods() { - var thisType = enclosingClass(); - var result = new ArrayList<ExecutableElement>(); - - if (thisType instanceof DeclaredType) { - var type = (DeclaredType) thisType; - result.addAll(virtualMethods(type)); - } - - return result; - } - private void collectSuperMethods(TypeMirror thisType, List<ExecutableElement> result) { var types = task.getTypes(); |