From 27bf571d6413c3cc6a5d664b5bddd38d21d7b1cd Mon Sep 17 00:00:00 2001 From: EVE Date: Mon, 13 Mar 2017 16:42:21 -0400 Subject: Formatting --- .../java/bjc/utils/funcutils/CollectorUtils.java | 22 ++++++++++------------ 1 file changed, 10 insertions(+), 12 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 eb3695e..1e5d7de 100644 --- a/BJC-Utils2/src/main/java/bjc/utils/funcutils/CollectorUtils.java +++ b/BJC-Utils2/src/main/java/bjc/utils/funcutils/CollectorUtils.java @@ -16,26 +16,24 @@ public class CollectorUtils { * Create a collector that applies two collectors at once * * @param - * The type of the collection to collect from + * The type of the collection to collect from * @param - * The intermediate type of the first collector + * The intermediate type of the first collector * @param - * The intermediate type of the second collector + * The intermediate type of the second collector * @param - * The final type of the first collector + * The final type of the first collector * @param - * The final type of the second collector + * The final type of the second collector * @param first - * The first collector to use + * The first collector to use * @param second - * The second collector to use + * The second collector to use * @return A collector that functions as mentioned above */ - public static - Collector>, IPair> - compoundCollect( - Collector first, - Collector second) { + public static Collector>, IPair> compoundCollect( + Collector first, + Collector second) { return new CompoundCollector<>(first, second); } } -- cgit v1.2.3