Windows directory separators (backslashes) have been replaced with
java.io.File.separatorChar. This means tibbibl puts its temporary files under Jskad/bin in my Linux sandbox.
This commit is contained in:
parent
69db20271b
commit
d453e801ef
2 changed files with 7 additions and 7 deletions
|
@ -861,7 +861,7 @@ System.out.println("TExt at title offset is: " + text);
|
|||
super(rootElement);
|
||||
setHead();
|
||||
setFactories();
|
||||
setDocType(new DocType(TIBL,"..\\bin\\xtibbibl2.dtd"));
|
||||
setDocType(new DocType(TIBL,".." + java.io.File.separatorChar + "bin" + java.io.File.separatorChar + "xtibbibl2.dtd"));
|
||||
org.jdom.Attribute idAt = getRootElement().getAttribute(ID);
|
||||
if(idAt != null && (idAt.getValue() == null || idAt.getValue().equals(""))) {
|
||||
idAt.detach();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue