Start embedded XML database without the db file name parameter, which doesn't
exist anymore and wasn't used anyhow.
This commit is contained in:
parent
0128e07d69
commit
101e3ee58a
1 changed files with 1 additions and 1 deletions
|
@ -67,7 +67,7 @@ public final class NodeManager {
|
||||||
idBaseValue = Math.max (1l, idBaseValue); // 0 and 1 are reserved for root nodes
|
idBaseValue = Math.max (1l, idBaseValue); // 0 and 1 are reserved for root nodes
|
||||||
} catch (NumberFormatException ignore) {}
|
} catch (NumberFormatException ignore) {}
|
||||||
|
|
||||||
db = new XmlDatabase (dbHome, helma.main.Server.dbFilename, this);
|
db = new XmlDatabase (dbHome, null, this);
|
||||||
initDb ();
|
initDb ();
|
||||||
|
|
||||||
logSql = "true".equalsIgnoreCase(props.getProperty ("logsql"));
|
logSql = "true".equalsIgnoreCase(props.getProperty ("logsql"));
|
||||||
|
|
Loading…
Add table
Reference in a new issue