Skip to content

Commit

Permalink
Review items
Browse files Browse the repository at this point in the history
  • Loading branch information
bmaidics committed Jul 8, 2024
1 parent 5c20b8a commit d822bf2
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,11 @@
@Command(name = "version", description = "Display version information")
public final class ZillaVersionCommand extends ZillaCommand
{
public ZillaVersionCommand()
{
}

@Override
public void run()
{
String version = ZillaVersionCommand.class.getModule().getDescriptor().rawVersion().orElse("unavailable");
String version = ZillaVersionCommand.class.getModule().getDescriptor().rawVersion().orElse("develop-SNAPSHOT");
System.out.println("zilla version " + version);
}
}

0 comments on commit d822bf2

Please sign in to comment.