mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-22 12:02: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(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();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue