From cbceee4abcb0863b0b6b3a5bd4a6872567e608cb Mon Sep 17 00:00:00 2001 From: Danila Fedorin Date: Fri, 1 Sep 2017 17:13:45 -0700 Subject: [PATCH] Switch number implementation to using Strings. --- .../java/org/nwapw/abacus/plugin/NumberImplementation.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/main/java/org/nwapw/abacus/plugin/NumberImplementation.java b/core/src/main/java/org/nwapw/abacus/plugin/NumberImplementation.java index 70e085e..ad5d1d1 100644 --- a/core/src/main/java/org/nwapw/abacus/plugin/NumberImplementation.java +++ b/core/src/main/java/org/nwapw/abacus/plugin/NumberImplementation.java @@ -14,7 +14,7 @@ public abstract class NumberImplementation { /** * The list of paths through which this implementation can be promoted. */ - private Map, Function> promotionPaths; + private Map> promotionPaths; /** * The implementation class for this implementation. */ @@ -41,7 +41,7 @@ public abstract class NumberImplementation { * * @return the map of documentation paths. */ - public final Map, Function> getPromotionPaths() { + public final Map> getPromotionPaths() { return promotionPaths; }