aboutsummaryrefslogtreecommitdiff
path: root/java/com/google/turbine/binder/bytecode/BytecodeBinder.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/com/google/turbine/binder/bytecode/BytecodeBinder.java')
-rw-r--r--java/com/google/turbine/binder/bytecode/BytecodeBinder.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/java/com/google/turbine/binder/bytecode/BytecodeBinder.java b/java/com/google/turbine/binder/bytecode/BytecodeBinder.java
index af8a8a3..82f8a8c 100644
--- a/java/com/google/turbine/binder/bytecode/BytecodeBinder.java
+++ b/java/com/google/turbine/binder/bytecode/BytecodeBinder.java
@@ -137,7 +137,7 @@ public final class BytecodeBinder {
for (Map.Entry<String, ElementValue> e : value.elementValuePairs().entrySet()) {
values.put(e.getKey(), bindValue(e.getValue()));
}
- return new TurbineAnnotationValue(new AnnoInfo(null, sym, null, values.build()));
+ return new TurbineAnnotationValue(new AnnoInfo(null, sym, null, values.buildOrThrow()));
}
static ImmutableList<AnnoInfo> bindAnnotations(List<AnnotationInfo> input) {