Skip to content

Commit

Permalink
2024.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pvlasov committed Aug 30, 2024
1 parent e6fabeb commit 7225cd8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public abstract class AbstractLauncherCommand extends CommandBase {
defaultValue = "%*")
private String args;

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

@Option(names = {"-s", "--absolute"}, description = "Use absolute paths")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -435,4 +435,11 @@ public void testAppendSegment() {
System.out.println(suri.resolve(uri));
}

@Test
public void testYaml() {
Yaml yaml = new Yaml();
Object map = yaml.load("key:");
System.out.println(map);
}

}

0 comments on commit 7225cd8

Please sign in to comment.