mirror of
https://github.com/moparisthebest/k-9
synced 2025-02-17 07:30:16 -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) {
|
if (text.length() <= 512) {
|
||||||
return text;
|
return text;
|
||||||
} else {
|
} else {
|
||||||
text = text.substring(0, 512);
|
return text.substring(0, 512);
|
||||||
return text;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user