File tree Expand file tree Collapse file tree
tcMenuGenerator/src/main/java/com/thecoderscorner/menu/editorui/cli Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11package com .thecoderscorner .menu .editorui .cli ;
22
3+ import com .thecoderscorner .menu .editorui .MenuEditorApp ;
34import com .thecoderscorner .menu .editorui .storage .MenuEditorConfig ;
45import com .thecoderscorner .menu .persist .ReleaseType ;
56
7+ import java .util .Locale ;
68import java .util .concurrent .Callable ;
79
810import static picocli .CommandLine .Command ;
1113public class VersionCommand implements Callable <Integer > {
1214 @ Override
1315 public Integer call () throws Exception {
16+ MenuEditorApp .configureBundle (Locale .getDefault ());
1417 var appContext = new MenuEditorConfig ();
1518 var storage = appContext .getConfigStore ();
1619 System .out .println ("TcMenu Designer V" + storage .getVersion () + " - " + storage .getReleaseType ());
You can’t perform that action at this time.
0 commit comments