aboutsummaryrefslogtreecommitdiff
path: root/java/com/google/turbine/tree/Tree.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/com/google/turbine/tree/Tree.java')
-rw-r--r--java/com/google/turbine/tree/Tree.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/java/com/google/turbine/tree/Tree.java b/java/com/google/turbine/tree/Tree.java
index 9ba6a70..6f46df5 100644
--- a/java/com/google/turbine/tree/Tree.java
+++ b/java/com/google/turbine/tree/Tree.java
@@ -203,8 +203,8 @@ public abstract class Tree {
return visitor.visitVoidTy(this, input);
}
- public VoidTy(int position, ImmutableList<Anno> annos) {
- super(position, annos);
+ public VoidTy(int position) {
+ super(position, ImmutableList.of());
}
}