remove a pointless extra assignment
This commit is contained in:
parent
196a9c167d
commit
8a907f9be7
1 changed files with 1 additions and 2 deletions
|
@ -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 a new issue