* Text import - works now also if tab is used to delimiter number and card name.

This commit is contained in:
LevelX2 2014-11-05 14:56:29 +01:00
parent f1b063f339
commit c02e5c8fbc

View file

@ -74,6 +74,7 @@ public class TxtDeckImporter extends DeckImporter {
return; return;
} }
line = line.replace("\t"," "); // changing tabs to blanks as delimiter
int delim = line.indexOf(' '); int delim = line.indexOf(' ');
if (delim < 0) { if (delim < 0) {
return; return;