The DatabaseMap class has the following constructor:

    /**
        constructor
        @params name name of the database
        @params numberOfColumns number of columns in the database
    */
    public DatabaseMap( String name, int numberOfColumns )
    {
        this.name = name;
        tables = new Hashtable( (int)(1.25*numberOfColumns) + 1 );
    }

Should it have "numberOfTables" and not "numberOfColumns" as 2nd parameter?
I know it's probably just a "syntactic slip", but may cause confusion to the
uninitiated.

Frank





------------------------------------------------------------
To subscribe:        [EMAIL PROTECTED]
To unsubscribe:      [EMAIL PROTECTED]
Problems?:           [EMAIL PROTECTED]

Reply via email to