Skip to content

Commit 50dab02

Browse files
committed
Reformat with javafmt
1 parent d1a41f0 commit 50dab02

File tree

1 file changed

+3
-9
lines changed

1 file changed

+3
-9
lines changed

semanticdb-javac/src/main/java/com/sourcegraph/semanticdb_javac/SemanticdbJavacOptions.java

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,10 @@
1111

1212
import static javax.tools.StandardLocation.CLASS_OUTPUT;
1313

14-
/**
15-
* Settings that can be configured alongside the -Xplugin compiler option.
16-
*/
14+
/** Settings that can be configured alongside the -Xplugin compiler option. */
1715
public class SemanticdbJavacOptions {
1816

19-
/**
20-
* The directory to place META-INF and its .semanticdb files
21-
*/
17+
/** The directory to place META-INF and its .semanticdb files */
2218
public Path targetroot;
2319

2420
public Path sourceroot;
@@ -90,9 +86,7 @@ private static Path getJavacClassesDir(SemanticdbJavacOptions result, Context ct
9086
String errorMsg =
9187
String.format(
9288
"-targetroot:%s passed but could not get the class output directory: %s",
93-
JAVAC_CLASSES_DIR_ARG,
94-
e.getMessage()
95-
);
89+
JAVAC_CLASSES_DIR_ARG, e.getMessage());
9690
result.errors.add(errorMsg);
9791
}
9892
return outputDir;

0 commit comments

Comments
 (0)