Minor: reformat CommonToolArguments
This commit is contained in:
+4
-2
@@ -20,12 +20,14 @@ import java.io.Serializable
|
|||||||
|
|
||||||
abstract class CommonToolArguments : Freezable(), Serializable {
|
abstract class CommonToolArguments : Freezable(), Serializable {
|
||||||
companion object {
|
companion object {
|
||||||
@JvmStatic private val serialVersionUID = 0L
|
@JvmStatic
|
||||||
|
private val serialVersionUID = 0L
|
||||||
}
|
}
|
||||||
|
|
||||||
var freeArgs: List<String> by FreezableVar(emptyList())
|
var freeArgs: List<String> by FreezableVar(emptyList())
|
||||||
|
|
||||||
@Transient var errors: ArgumentParseErrors = ArgumentParseErrors()
|
@Transient
|
||||||
|
var errors: ArgumentParseErrors = ArgumentParseErrors()
|
||||||
|
|
||||||
@Argument(value = "-help", shortName = "-h", description = "Print a synopsis of standard options")
|
@Argument(value = "-help", shortName = "-h", description = "Print a synopsis of standard options")
|
||||||
var help: Boolean by FreezableVar(false)
|
var help: Boolean by FreezableVar(false)
|
||||||
|
|||||||
Reference in New Issue
Block a user