pgm: Fix missing braces in ShowRef.run()

Change-Id: I92bc2008c72bd4495dc3df47a9dd7eb242aab30f
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
This commit is contained in:
Matthias Sohn 2019-01-21 23:44:55 +01:00
parent 5ca4075c45
commit b33124c0ee
1 changed files with 2 additions and 1 deletions

View File

@ -60,8 +60,9 @@ protected void run() {
try {
for (Ref r : getSortedRefs()) {
show(r.getObjectId(), r.getName());
if (r.getPeeledObjectId() != null)
if (r.getPeeledObjectId() != null) {
show(r.getPeeledObjectId(), r.getName() + "^{}"); //$NON-NLS-1$
}
}
} catch (IOException e) {
throw die(e.getMessage(), e);