// Copyright (c) 1996-2002 Brian D. Carlstrom

package bdc.util;

/**
    A DynamicArray of Objects

    No array() needed because the underlying array is the same type

*/
public class ObjectArray extends DynamicArray
{
    public Object[] alloc (int size)
    {
        return new Object[size];
    }
}
