1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-11-27 03:32:16 -05:00

Fix code formatting

This commit is contained in:
cketti 2015-04-03 21:33:38 +02:00
parent a3375d7030
commit 24b61e0743

View File

@ -71,8 +71,9 @@ public class MessageReference implements Parcelable {
}
}
if (K9.DEBUG)
if (K9.DEBUG) {
Log.d(K9.LOG_TAG, "Thawed " + toString());
}
} else {
throw new MessagingException("Invalid MessageReference in " + identity + " identity.");
}
@ -176,8 +177,7 @@ public class MessageReference implements Parcelable {
String flag = source.readString();
if (flag != null) {
ref = new MessageReference(uid, accountUuid, folderName, Flag.valueOf(flag));
}
else {
} else {
ref = new MessageReference(uid, accountUuid, folderName, null);
}
return ref;