summaryrefslogtreecommitdiff
path: root/base/src/main/java/bjc/utils/funcutils/CollectorUtils.java
diff options
context:
space:
mode:
authorbjculkin <bjculkin@mix.wvu.edu>2018-02-12 22:45:04 -0500
committerbjculkin <bjculkin@mix.wvu.edu>2018-02-12 22:45:04 -0500
commitdf94066e3af02ff02d5ab4d033a3d603f743234c (patch)
tree168a1edaf58d386c175ffb601e9d4da8e13d31e2 /base/src/main/java/bjc/utils/funcutils/CollectorUtils.java
parentae51c587c53f7ca311e556e3cbd0c5566d6c2843 (diff)
Formatting pass
Diffstat (limited to 'base/src/main/java/bjc/utils/funcutils/CollectorUtils.java')
-rw-r--r--base/src/main/java/bjc/utils/funcutils/CollectorUtils.java17
1 files changed, 8 insertions, 9 deletions
diff --git a/base/src/main/java/bjc/utils/funcutils/CollectorUtils.java b/base/src/main/java/bjc/utils/funcutils/CollectorUtils.java
index 2da5967..419c216 100644
--- a/base/src/main/java/bjc/utils/funcutils/CollectorUtils.java
+++ b/base/src/main/java/bjc/utils/funcutils/CollectorUtils.java
@@ -15,28 +15,27 @@ public class CollectorUtils {
* Create a collector that applies two collectors at once.
*
* @param <InitialType>
- * The type of the collection to collect from.
+ * The type of the collection to collect from.
*
* @param <AuxType1>
- * The intermediate type of the first collector.
+ * The intermediate type of the first collector.
*
* @param <AuxType2>
- * The intermediate type of the second collector.
+ * The intermediate type of the second collector.
*
* @param <FinalType1>
- * The final type of the first collector.
+ * The final type of the first collector.
*
* @param <FinalType2>
- * 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.
+ * @return A collector that functions as mentioned above.
*/
public static <InitialType, AuxType1, AuxType2, FinalType1, FinalType2> Collector<InitialType, IHolder<IPair<AuxType1, AuxType2>>, IPair<FinalType1, FinalType2>> compoundCollect(
final Collector<InitialType, AuxType1, FinalType1> first,