I'm try to create a HashTable and this part of the code requires an array, but when it's not delcared generic I get unchecked warnings, but I know that generic arrays aren't supported, but I'm not sure how to fix this.
array = new HashEntry<AnyType>[ nextPrime( arraySize ) ];