summaryrefslogtreecommitdiffstats
path: root/server/src/com/vaadin/data/util
diff options
context:
space:
mode:
authorDenis Anisimov <denis@vaadin.com>2015-07-07 19:39:05 +0300
committerVaadin Code Review <review@vaadin.com>2015-07-07 17:12:10 +0000
commit802b6cbd59186d3a0823b316f7523bb4120cb678 (patch)
tree1b714dc130dc81a19818c1fe82bfb22643f1ea28 /server/src/com/vaadin/data/util
parentd2c3e30f20e7566c34f0ee775d68b809583328b4 (diff)
downloadvaadin-framework-802b6cbd59186d3a0823b316f7523bb4120cb678.tar.gz
vaadin-framework-802b6cbd59186d3a0823b316f7523bb4120cb678.zip
Always add "last" item from the string to the collection (#18433).
Change-Id: I664fcef77f469c66cd62afb2938db69b7f27e6df
Diffstat (limited to 'server/src/com/vaadin/data/util')
-rw-r--r--server/src/com/vaadin/data/util/converter/StringToCollectionConverter.java4
1 files changed, 1 insertions, 3 deletions
diff --git a/server/src/com/vaadin/data/util/converter/StringToCollectionConverter.java b/server/src/com/vaadin/data/util/converter/StringToCollectionConverter.java
index 495bed74f8..b86fec5558 100644
--- a/server/src/com/vaadin/data/util/converter/StringToCollectionConverter.java
+++ b/server/src/com/vaadin/data/util/converter/StringToCollectionConverter.java
@@ -155,9 +155,7 @@ public class StringToCollectionConverter implements
previous = index + delimiter.length();
index = value.indexOf(delimiter, previous);
}
- if (result.size() > 0) {
- collectToken(value.substring(previous), result, converter, locale);
- }
+ collectToken(value.substring(previous), result, converter, locale);
return result;
}