Skip to content

Commit fefae7f

Browse files
committed
AnnotationProcessor: fix comment style
1 parent 8e7e70c commit fefae7f

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

src/main/java/org/scijava/annotations/AnnotationProcessor.java

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -248,12 +248,10 @@ public OutputStream openOutput(final String annotationName)
248248
filer.createResource(StandardLocation.CLASS_OUTPUT, "", path,
249249
originating.toArray(new Element[originating.size()]));
250250

251-
/*
252-
* Verify that the generated file is in the META-INF/json/ subdirectory;
253-
* Despite our asking for it explicitly, the DefaultFileManager will
254-
* strip out the directory if javac was called without an explicit
255-
* output directory (i.e. without <code>-d</code> option).
256-
*/
251+
// Verify that the generated file is in the META-INF/json/ subdirectory;
252+
// Despite our asking for it explicitly, the DefaultFileManager will
253+
// strip out the directory if javac was called without an explicit
254+
// output directory (i.e. without <code>-d</code> option).
257255
final String uri = fileObject.toUri().toString();
258256
if (uri != null && uri.endsWith("/" + path)) {
259257
return fileObject.openOutputStream();

0 commit comments

Comments
 (0)