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:
parent
196a9c167d
commit
8a907f9be7
@ -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);
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user