Like a noob, I missed some things... broke the compilation.

This commit is contained in:
mweaver
2009-04-22 15:24:26 -06:00
parent f68f1e5888
commit 6b89ecd0ee
18 changed files with 34 additions and 30 deletions

View File

@ -64,7 +64,7 @@ public class Arrays {
throw new UnsupportedOperationException();
}
public boolean contains(T element) {
public boolean contains(Object element) {
for (int i = 0; i < array.length; ++i) {
if (equal(element, array[i])) {
return true;
@ -93,7 +93,7 @@ public class Arrays {
throw new UnsupportedOperationException();
}
public boolean remove(T element) {
public boolean remove(Object element) {
throw new UnsupportedOperationException();
}