From 946cab444bc301d8a7c756a1bab039558288de89 Mon Sep 17 00:00:00 2001 From: "Benjamin J. Culkin" Date: Wed, 11 Oct 2017 13:41:07 -0300 Subject: Cleanup work --- .../main/java/bjc/utils/funcdata/FunctionalMap.java | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'base/src/main/java/bjc/utils/funcdata/FunctionalMap.java') diff --git a/base/src/main/java/bjc/utils/funcdata/FunctionalMap.java b/base/src/main/java/bjc/utils/funcdata/FunctionalMap.java index c4f0ff1..1218833 100644 --- a/base/src/main/java/bjc/utils/funcdata/FunctionalMap.java +++ b/base/src/main/java/bjc/utils/funcdata/FunctionalMap.java @@ -14,25 +14,25 @@ import bjc.utils.data.IPair; * @author ben * * @param - * The type of the map's keys + * The type of the map's keys. + * * @param - * The type of the map's values + * The type of the map's values. */ public class FunctionalMap implements IMap { + /* Our backing store. */ private Map wrappedMap; - /** - * Create a new blank functional map - */ + /** Create a new blank functional map */ public FunctionalMap() { wrappedMap = new HashMap<>(); } /** - * Create a new functional map with the specified entries + * Create a new functional map with the specified entries. * * @param entries - * The entries to put into the map + * The entries to put into the map. */ @SafeVarargs public FunctionalMap(final IPair... entries) { @@ -46,10 +46,10 @@ public class FunctionalMap implements IMap wrap) { if (wrap == null) throw new NullPointerException("Map to wrap must not be null"); -- cgit v1.2.3