aboutsummaryrefslogtreecommitdiff
path: root/javatests
diff options
context:
space:
mode:
authorLiam Miller-Cushon <cushon@google.com>2021-09-17 10:50:53 -0700
committerJavac Team <javac-team+copybara@google.com>2021-09-17 10:51:32 -0700
commit22e3c673b3d3f679fe0fa872da1acaada732a291 (patch)
tree23abe2de40dcbb85e12b1f6ef810c16e3c75b283 /javatests
parent9c70fad35e1d8959048816ca64d2bb4dc684d072 (diff)
downloadturbine-22e3c673b3d3f679fe0fa872da1acaada732a291.tar.gz
Fix position of type annotations
PiperOrigin-RevId: 397354545
Diffstat (limited to 'javatests')
-rw-r--r--javatests/com/google/turbine/processing/TurbineFilerTest.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/javatests/com/google/turbine/processing/TurbineFilerTest.java b/javatests/com/google/turbine/processing/TurbineFilerTest.java
index 188a75b..83dcc70 100644
--- a/javatests/com/google/turbine/processing/TurbineFilerTest.java
+++ b/javatests/com/google/turbine/processing/TurbineFilerTest.java
@@ -56,9 +56,8 @@ public class TurbineFilerTest {
public void setup() {
Function<String, Supplier<byte[]>> classpath =
new Function<String, Supplier<byte[]>>() {
- @Nullable
@Override
- public Supplier<byte[]> apply(String input) {
+ public @Nullable Supplier<byte[]> apply(String input) {
return null;
}
};