From d4ca769e542b2489b1e23cfcbdc3a0b7275b87cd Mon Sep 17 00:00:00 2001 From: Ben Culkin Date: Mon, 13 Apr 2020 18:40:41 -0400 Subject: Cleanup pass Cleanup pass to uniformize things --- .../java/bjc/utils/funcutils/CollectorUtils.java | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) (limited to 'base/src/main/java/bjc/utils/funcutils/CollectorUtils.java') diff --git a/base/src/main/java/bjc/utils/funcutils/CollectorUtils.java b/base/src/main/java/bjc/utils/funcutils/CollectorUtils.java index fab2ba2..81313c8 100644 --- a/base/src/main/java/bjc/utils/funcutils/CollectorUtils.java +++ b/base/src/main/java/bjc/utils/funcutils/CollectorUtils.java @@ -15,31 +15,33 @@ 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( - final Collector first, - final Collector second) { + public static + Collector>, + IPair> + compoundCollect(final Collector first, + final Collector second) { return new CompoundCollector<>(first, second); } } -- cgit v1.2.3