|
|
@ -219,9 +219,11 @@ public class PushCertificate { |
|
|
|
StringBuilder sb = new StringBuilder() |
|
|
|
StringBuilder sb = new StringBuilder() |
|
|
|
.append(VERSION).append(' ').append(version).append('\n') |
|
|
|
.append(VERSION).append(' ').append(version).append('\n') |
|
|
|
.append(PUSHER).append(' ').append(getPusher()) |
|
|
|
.append(PUSHER).append(' ').append(getPusher()) |
|
|
|
.append('\n') |
|
|
|
.append('\n'); |
|
|
|
.append(PUSHEE).append(' ').append(pushee).append('\n') |
|
|
|
if (pushee != null) { |
|
|
|
.append(NONCE).append(' ').append(nonce).append('\n') |
|
|
|
sb.append(PUSHEE).append(' ').append(pushee).append('\n'); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
sb.append(NONCE).append(' ').append(nonce).append('\n') |
|
|
|
.append('\n'); |
|
|
|
.append('\n'); |
|
|
|
for (ReceiveCommand cmd : commands) { |
|
|
|
for (ReceiveCommand cmd : commands) { |
|
|
|
sb.append(cmd.getOldId().name()) |
|
|
|
sb.append(cmd.getOldId().name()) |
|
|
|