diff --git a/lab06/src/ULLMap.java b/lab06/src/ULLMap.java index 5999d81..def13bb 100644 --- a/lab06/src/ULLMap.java +++ b/lab06/src/ULLMap.java @@ -88,7 +88,7 @@ Entry get(K k) { if (next == null) { return null; } - return next.get(key); + return next.get(k); } /** Stores the key of the key-value pair of this node in the list. */