Fixed crashing bug in Import Wylie.
This commit is contained in:
parent
8fbd8850f8
commit
85e1e0701e
1 changed files with 1 additions and 1 deletions
|
@ -1209,7 +1209,7 @@ public class Jskad extends JPanel implements DocumentListener {
|
||||||
if (i < 0)
|
if (i < 0)
|
||||||
rtf_fileName += ".rtf";
|
rtf_fileName += ".rtf";
|
||||||
else
|
else
|
||||||
rtf_fileName = fileName.substring(0, i) + ".rtf";
|
rtf_fileName = rtf_fileName.substring(0, i) + ".rtf";
|
||||||
|
|
||||||
try {
|
try {
|
||||||
BufferedReader in = new BufferedReader(new FileReader(txt_fileChosen));
|
BufferedReader in = new BufferedReader(new FileReader(txt_fileChosen));
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue