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:
hns 2002-07-15 14:34:19 +00:00
parent 0128e07d69
commit 101e3ee58a

View file

@ -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"));