Skip to content

Commit 9b97973

Browse files
cushongoogle-java-format Team
authored andcommitted
Fix index of keepEndPos parameter
PiperOrigin-RevId: 864745710
1 parent 4a15b1b commit 9b97973

File tree

1 file changed

+1
-1
lines changed
  • core/src/main/java/com/google/googlejavaformat/java

1 file changed

+1
-1
lines changed

core/src/main/java/com/google/googlejavaformat/java/Trees.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ private static MethodHandle getNewParserHandle() {
229229
"newParser",
230230
MethodType.methodType(
231231
JavacParser.class, CharSequence.class, boolean.class, boolean.class)),
232-
2,
232+
3,
233233
boolean.class);
234234
} catch (ReflectiveOperationException e) {
235235
throw new LinkageError(e.getMessage(), e);

0 commit comments

Comments
 (0)