pgm: Fix missing braces in Version.run()

Change-Id: I4c5633846320f0324714f635b2be388b17cf79fa
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
This commit is contained in:
Matthias Sohn 2019-01-21 23:55:08 +01:00
parent 7383d34737
commit 39b8f43dcd
1 changed files with 4 additions and 2 deletions

View File

@ -63,13 +63,15 @@ protected void run() {
// if Implementation-Version is not available then try reading
// Bundle-Version
if (version == null)
if (version == null) {
version = getBundleVersion();
}
// if both Implementation-Version and Bundle-Version are not available
// then throw an exception
if (version == null)
if (version == null) {
throw die(CLIText.get().cannotReadPackageInformation);
}
try {
outw.println(