mirror of
https://github.com/mitb-archive/filebot
synced 2025-03-10 06:20:27 -04:00
Add default string representation for args object
This commit is contained in:
parent
e34492f6e7
commit
adf3007372
@ -393,6 +393,11 @@ public class ArgumentBean {
|
|||||||
return () -> new CmdlineException(message + ": " + value);
|
return () -> new CmdlineException(message + ": " + value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return deepToString(args);
|
||||||
|
}
|
||||||
|
|
||||||
public static ArgumentBean parse(String... args) throws CmdLineException {
|
public static ArgumentBean parse(String... args) throws CmdLineException {
|
||||||
try {
|
try {
|
||||||
return new ArgumentBean(args);
|
return new ArgumentBean(args);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user