Skip to content

Commit

Permalink
Use visually better separator
Browse files Browse the repository at this point in the history
  • Loading branch information
martinpaljak committed Jan 26, 2013
1 parent b2a5573 commit cff1a94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/openkms/gpj/GPJTool.java
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ final class InstallEntry {
for (AIDRegistryEntry e : registry) {
AID aid = e.getAID();
System.out.println("AID: " + GPUtils.byteArrayToString(aid.getBytes()) + " (" + GPUtils.byteArrayToReadableString(aid.getBytes()) + ")");
System.out.println(" " + e.getKind().toShortString() + " " + e.getLifeCycleString() + ", " + e.getPrivilegesString());
System.out.println(" " + e.getKind().toShortString() + " " + e.getLifeCycleString() + ": " + e.getPrivilegesString());

for (AID a : e.getExecutableAIDs()) {
System.out.println(" " + GPUtils.byteArrayToString(a.getBytes()) + " (" + GPUtils.byteArrayToReadableString(a.getBytes()) + ")");
Expand Down

0 comments on commit cff1a94

Please sign in to comment.