Skip to content
Snippets Groups Projects
Commit 228cb8d7 authored by tcarver's avatar tcarver
Browse files

use StringTokenizer.nextToken() with the StringVector

parent 7671c20b
No related branches found
No related tags found
No related merge requests found
......@@ -1187,7 +1187,7 @@ public class GFFStreamFeature extends SimpleDocumentFeature
new StringTokenizer((String)att_values.get(0), ",");
StringVector str_values = new StringVector();
while(stok.hasMoreTokens())
str_values.add(stok.nextElement());
str_values.add(stok.nextToken());
att_values = str_values;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment