mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-22 06:12:05 +01:00
Improve readability by fixing wrong indentation levels
This commit is contained in:
parent
6d0bf04c1e
commit
48d5ef9522
4 changed files with 21 additions and 21 deletions
|
@ -216,9 +216,9 @@ public abstract class OmemoBundleElement implements ExtensionElement {
|
||||||
.append(IDENTITY_KEY).append(": ").append(identityKeyB64).append('\n')
|
.append(IDENTITY_KEY).append(": ").append(identityKeyB64).append('\n')
|
||||||
.append(PRE_KEYS).append(" (").append(preKeysB64.size()).append(")\n");
|
.append(PRE_KEYS).append(" (").append(preKeysB64.size()).append(")\n");
|
||||||
for (Map.Entry<Integer, String> e : preKeysB64.entrySet()) {
|
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();
|
return sb.toString();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue