mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-23 09:52:16 -05:00
extract variable per review comment
This commit is contained in:
parent
32cc97207c
commit
e935feb068
@ -2379,8 +2379,10 @@ public class MessageCompose extends K9Activity implements OnClickListener,
|
|||||||
// Decode the identity header when loading a draft.
|
// Decode the identity header when loading a draft.
|
||||||
// See buildIdentityHeader(TextBody) for a detailed description of the composition of this blob.
|
// See buildIdentityHeader(TextBody) for a detailed description of the composition of this blob.
|
||||||
Map<IdentityField, String> k9identity = new HashMap<IdentityField, String>();
|
Map<IdentityField, String> k9identity = new HashMap<IdentityField, String>();
|
||||||
if (message.getHeader(K9.IDENTITY_HEADER).length > 0 && message.getHeader(K9.IDENTITY_HEADER)[0] != null) {
|
String[] identityHeaders = message.getHeader(K9.IDENTITY_HEADER);
|
||||||
k9identity = IdentityHeaderParser.parse(message.getHeader(K9.IDENTITY_HEADER)[0]);
|
|
||||||
|
if (identityHeaders.length > 0 && identityHeaders[0] != null) {
|
||||||
|
k9identity = IdentityHeaderParser.parse(identityHeaders[0]);
|
||||||
}
|
}
|
||||||
|
|
||||||
Identity newIdentity = new Identity();
|
Identity newIdentity = new Identity();
|
||||||
|
Loading…
Reference in New Issue
Block a user