	/** Removes one unspecified entry from this bag, if possible.
       @return  Either the removed entry, if the removal was successful,
                or null otherwise. */
	public T remove()
	{
		checkInitialization();
      T result = removeEntry(numberOfEntries - 1);		
		return result;
	} // end remove