Skip to content

Commit

Permalink
list item does skip empty strings
Browse files Browse the repository at this point in the history
  • Loading branch information
heiko-braun committed Apr 17, 2012
1 parent 23bf4bb commit b0adc1e
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -86,7 +86,7 @@ public List getValue() {
value.clear();

for(String s : split)
value.add(s);
if(!s.equals("")) value.add(s);

// prevent references
return new ArrayList(value);
Expand Down

0 comments on commit b0adc1e

Please sign in to comment.