1
0
mirror of https://github.com/chylex/IntelliJ-IdeaVim.git synced 2025-08-11 00:40:37 +02:00

Replace string buffer with string builder

This commit is contained in:
Alex Plate 2019-12-06 18:14:59 +03:00
parent 7c162fc7ed
commit c3183a8bd7
No known key found for this signature in database
GPG Key ID: 0B97153C8FFEC09F

View File

@ -40,7 +40,7 @@ public class ListOption extends TextOption {
@Override
@NotNull
public String getValue() {
StringBuffer res = new StringBuffer();
StringBuilder res = new StringBuilder();
int cnt = 0;
if (value == null) {
return "";