From 8eba18b3e9fdafbb52f05ba2a74c2bb6c2d60714 Mon Sep 17 00:00:00 2001 From: Gary Gregory Date: Sun, 23 Jun 2024 15:13:01 -0400 Subject: [PATCH] Whitespace --- .../commons/collections4/map/AbstractHashedMap.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/main/java/org/apache/commons/collections4/map/AbstractHashedMap.java b/src/main/java/org/apache/commons/collections4/map/AbstractHashedMap.java index 1e344c690..eb5dbfde1 100644 --- a/src/main/java/org/apache/commons/collections4/map/AbstractHashedMap.java +++ b/src/main/java/org/apache/commons/collections4/map/AbstractHashedMap.java @@ -464,22 +464,22 @@ public class AbstractHashedMap extends AbstractMap implements Iterab } } - /** Exception message. */ + /** Exception message. */ protected static final String NO_NEXT_ENTRY = "No next() entry in the iteration"; - /** Exception message. */ + /** Exception message. */ protected static final String NO_PREVIOUS_ENTRY = "No previous() entry in the iteration"; - /** Exception message. */ + /** Exception message. */ protected static final String REMOVE_INVALID = "remove() can only be called once after next()"; - /** Exception message. */ + /** Exception message. */ protected static final String GETKEY_INVALID = "getKey() can only be called after next() and before remove()"; - /** Exception message. */ + /** Exception message. */ protected static final String GETVALUE_INVALID = "getValue() can only be called after next() and before remove()"; - /** Exception message. */ + /** Exception message. */ protected static final String SETVALUE_INVALID = "setValue() can only be called after next() and before remove()"; /** The default capacity to use */