Improve readability by fixing wrong indentation levels

This commit is contained in:
Paul Schaub 2020-01-06 20:01:04 +01:00
parent 6d0bf04c1e
commit 48d5ef9522
4 changed files with 21 additions and 21 deletions

View File

@ -216,9 +216,9 @@ public abstract class OmemoBundleElement implements ExtensionElement {
.append(IDENTITY_KEY).append(": ").append(identityKeyB64).append('\n')
.append(PRE_KEYS).append(" (").append(preKeysB64.size()).append(")\n");
for (Map.Entry<Integer, String> e : preKeysB64.entrySet()) {
sb.append(PRE_KEY_PUB).append(' ').append(PRE_KEY_ID).append("=").append(e.getKey()).append(": ").append(e.getValue()).append("\n");
sb.append(PRE_KEY_PUB).append(' ').append(PRE_KEY_ID).append('=').append(e.getKey()).append(": ").append(e.getValue()).append('\n');
}
sb.append("]");
sb.append(']');
return sb.toString();
}