aboutsummaryrefslogtreecommitdiff
path: root/java/com/google/turbine/parse/StreamLexer.java
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 /java/com/google/turbine/parse/StreamLexer.java
parent9c70fad35e1d8959048816ca64d2bb4dc684d072 (diff)
downloadturbine-22e3c673b3d3f679fe0fa872da1acaada732a291.tar.gz
Fix position of type annotations
PiperOrigin-RevId: 397354545
Diffstat (limited to 'java/com/google/turbine/parse/StreamLexer.java')
-rw-r--r--java/com/google/turbine/parse/StreamLexer.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/java/com/google/turbine/parse/StreamLexer.java b/java/com/google/turbine/parse/StreamLexer.java
index b9f9c5c..2348385 100644
--- a/java/com/google/turbine/parse/StreamLexer.java
+++ b/java/com/google/turbine/parse/StreamLexer.java
@@ -65,9 +65,8 @@ public class StreamLexer implements Lexer {
ch = reader.next();
}
- @Nullable
@Override
- public String javadoc() {
+ public @Nullable String javadoc() {
String result = javadoc;
javadoc = null;
if (result == null) {