Skip to content

Commit 7225cd8

Browse files
committed
2024.8.0
1 parent e6fabeb commit 7225cd8

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

cli/src/main/java/org/nasdanika/cli/AbstractLauncherCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ public abstract class AbstractLauncherCommand extends CommandBase {
7474
defaultValue = "%*")
7575
private String args;
7676

77-
@Option(names = {"-v", "--verbose"}, description = "Output debug invformation")
77+
@Option(names = {"-v", "--verbose"}, description = "Output debug information")
7878
private boolean verbose;
7979

8080
@Option(names = {"-s", "--absolute"}, description = "Use absolute paths")

common/src/test/java/org/nasdanika/common/tests/TestCommon.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -435,4 +435,11 @@ public void testAppendSegment() {
435435
System.out.println(suri.resolve(uri));
436436
}
437437

438+
@Test
439+
public void testYaml() {
440+
Yaml yaml = new Yaml();
441+
Object map = yaml.load("key:");
442+
System.out.println(map);
443+
}
444+
438445
}

0 commit comments

Comments
 (0)