/** Regular node table */
@Deprecated
public static NodeTable create(IndexBuilder indexBuilder, Location location)
{
// The node table (id to node).
FileSet filesetNodeTable = null ;
if ( location != null )
filesetNodeTable = new FileSet(location, Names.indexId2Node) ;
// The index of node to id
FileSet filesetIdx = null ;
if ( location != null )
filesetIdx = new FileSet(location, Names.indexNode2Id) ;
SystemParams params = SystemParams.getStdSystemParams() ;
return create(indexBuilder, filesetNodeTable, filesetIdx,
params.Node2NodeIdCacheSize ,