mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
* Text import - works now also if tab is used to delimiter number and card name.
This commit is contained in:
parent
f1b063f339
commit
c02e5c8fbc
1 changed files with 1 additions and 0 deletions
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue