From d2af58b0f68ebfbba2be7e7679efec6c8c0af12f Mon Sep 17 00:00:00 2001 From: bculkin2442 Date: Thu, 9 Feb 2017 11:50:31 -0500 Subject: Update --- .../main/java/bjc/utils/funcutils/CollectorUtils.java | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) (limited to 'BJC-Utils2/src/main/java/bjc/utils/funcutils/CollectorUtils.java') diff --git a/BJC-Utils2/src/main/java/bjc/utils/funcutils/CollectorUtils.java b/BJC-Utils2/src/main/java/bjc/utils/funcutils/CollectorUtils.java index 0a1efd5..eb3695e 100644 --- a/BJC-Utils2/src/main/java/bjc/utils/funcutils/CollectorUtils.java +++ b/BJC-Utils2/src/main/java/bjc/utils/funcutils/CollectorUtils.java @@ -25,20 +25,17 @@ public class CollectorUtils { * The final type of the first collector * @param * The final type of the second collector - * @param firstCollector + * @param first * The first collector to use - * @param secondCollector + * @param second * The second collector to use * @return A collector that functions as mentioned above */ - public static Collector>, - IPair> compoundCollect( - Collector firstCollector, - Collector secondCollector) { - return new CompoundCollector<>(firstCollector, secondCollector); + public static + Collector>, IPair> + compoundCollect( + Collector first, + Collector second) { + return new CompoundCollector<>(first, second); } } -- cgit v1.2.3