1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-11-23 18:02:15 -05:00

remove a pointless extra assignment

This commit is contained in:
Jesse Vincent 2011-05-05 12:47:57 -04:00
parent 196a9c167d
commit 8a907f9be7

View File

@ -2724,8 +2724,7 @@ public class LocalStore extends Store implements Serializable {
if (text.length() <= 512) {
return text;
} else {
text = text.substring(0, 512);
return text;
return text.substring(0, 512);
}
}