Initial problem solving (identified by Intellij)

This commit is contained in:
2026-06-14 21:01:43 +02:00
parent e27a2e1b0c
commit bac4a6b7f5
69 changed files with 175 additions and 368 deletions
@@ -101,13 +101,6 @@ public class LimitedMap<K, V> implements Map<K, V> {
*/
public void setLimit(int num) { this.limit = num; }
/**
* Returns the current size limit of this map.
*
* @return the current limit.
*/
public int getLimit() { return limit; }
/**
* Sets a new action to execute when the map size reaches or exceeds the limit.
*