changed db-tag-processing to csv-file
This commit is contained in:
parent
30f548096b
commit
60c99500fa
1 changed files with 1 additions and 1 deletions
|
@ -145,7 +145,7 @@ public class DatabasePseudoTagProvider {
|
||||||
private List<String> tokenize(String s) {
|
private List<String> tokenize(String s) {
|
||||||
List<String> l = new ArrayList<>();
|
List<String> l = new ArrayList<>();
|
||||||
StringBuilder sb = new StringBuilder();
|
StringBuilder sb = new StringBuilder();
|
||||||
for(int i=0; i<s.length(); i++) {
|
for (int i=0; i<s.length(); i++) {
|
||||||
char c = s.charAt(i);
|
char c = s.charAt(i);
|
||||||
if (c == ';') {
|
if (c == ';') {
|
||||||
l.add(sb.toString());
|
l.add(sb.toString());
|
||||||
|
|
Loading…
Reference in a new issue