From 0a8f34c27c6ef93c5c94d17728af62c7607e225f Mon Sep 17 00:00:00 2001 From: Ben Culkin Date: Thu, 3 Dec 2020 19:21:38 -0500 Subject: Rename types to match Java style This renames several interfaces that had names like IWhatever, since that isn't a style that Java uses --- src/main/java/bjc/funcdata/ExtendedMap.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/main/java/bjc/funcdata/ExtendedMap.java') diff --git a/src/main/java/bjc/funcdata/ExtendedMap.java b/src/main/java/bjc/funcdata/ExtendedMap.java index 9638cdc..379ff65 100644 --- a/src/main/java/bjc/funcdata/ExtendedMap.java +++ b/src/main/java/bjc/funcdata/ExtendedMap.java @@ -15,11 +15,11 @@ import java.util.function.*; * @param * The type of the values of the map. */ -class ExtendedMap implements IMap { +class ExtendedMap implements MapEx { /* The map we delegate lookups to. */ - private final IMap delegate; + private final MapEx delegate; /* The map we store things in. */ - private final IMap store; + private final MapEx store; private boolean isFrozen = false; private boolean thawEnabled = true; @@ -33,8 +33,8 @@ class ExtendedMap implements IMap { * @param store * The map to store things in. */ - public ExtendedMap(final IMap delegate, - final IMap store) { + public ExtendedMap(final MapEx delegate, + final MapEx store) { this.delegate = delegate; this.store = store; } @@ -71,8 +71,8 @@ class ExtendedMap implements IMap { } @Override - public IList keyList() { - IList ilst = new FunctionalList<>(); + public ListEx keyList() { + ListEx ilst = new FunctionalList<>(); ilst.addAll(store.keyList()); ilst.addAll(delegate.keyList()); -- cgit v1.2.3