From 8923edffdb36b790014ff47301e53f7ede93ea0d Mon Sep 17 00:00:00 2001 From: "Benjamin J. Culkin" Date: Wed, 11 Oct 2017 22:49:16 -0300 Subject: Cleanup more --- .../java/bjc/utils/funcutils/CollectorUtils.java | 27 ++++++++++++++-------- 1 file changed, 17 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 a044bfd..2da5967 100644 --- a/base/src/main/java/bjc/utils/funcutils/CollectorUtils.java +++ b/base/src/main/java/bjc/utils/funcutils/CollectorUtils.java @@ -9,27 +9,34 @@ import bjc.utils.data.IPair; * Utilities for producing implementations of {@link Collector} * * @author ben - * */ public class CollectorUtils { /** - * Create a collector that applies two collectors at once + * 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 - * @return A collector that functions as mentioned above + * The second collector to use. + * + * @return + * A collector that functions as mentioned above. */ public static Collector>, IPair> compoundCollect( final Collector first, -- cgit v1.2.3