Skip to content

Commit be07ac0

Browse files
stelfrichctrueden
authored andcommitted
ImageJ2Options: clean up and reformat code
1 parent f28b2cb commit be07ac0

File tree

1 file changed

+9
-11
lines changed

1 file changed

+9
-11
lines changed

src/main/java/net/imagej/legacy/ImageJ2Options.java

+9-11
Original file line numberDiff line numberDiff line change
@@ -75,21 +75,19 @@ public class ImageJ2Options extends OptionsPlugin implements Interactive {
7575
* This system leverages the <a href="http://imagej.net/SCIFIO">SCIFIO</a>
7676
* library to open image files.
7777
*/
78-
@Parameter(
79-
label = "Use SCIFIO when opening files (BETA!)",
80-
description = "<html>Whether to use ImageJ2's file I/O mechanism when "
81-
+ "opening files.<br>Image files will be opened using the SCIFIO library "
82-
+ "(SCientific Image<br>Format Input and Output), which provides truly "
83-
+ "extensible support for<br>reading and writing image file formats.",
78+
@Parameter(label = "Use SCIFIO when opening files (BETA!)",
79+
description = "<html>Whether to use ImageJ2's file I/O mechanism when " +
80+
"opening files.<br>Image files will be opened using the SCIFIO library " +
81+
"(SCientific Image<br>Format Input and Output), which provides truly " +
82+
"extensible support for<br>reading and writing image file formats.",
8483
callback = "run")
8584
private boolean sciJavaIO = false;
8685

87-
@Parameter(
88-
label = "SciJava log level",
86+
@Parameter(label = "SciJava log level",
8987
description = "<html>Log level for SciJava",
90-
initializer = "initializeLogLevel",
91-
callback = "setLogLevel",
92-
choices = {"ERROR", "WARN", "INFO", "DEBUG", "TRACE"},
88+
initializer = "initializeLogLevel", //
89+
callback = "setLogLevel", //
90+
choices = { "ERROR", "WARN", "INFO", "DEBUG", "TRACE" }, //
9391
persist = false)
9492
private String logLevel;
9593

0 commit comments

Comments
 (0)