summaryrefslogtreecommitdiff
path: root/BJC-Utils2/src/main/java/bjc/utils/funcutils/CollectorUtils.java
diff options
context:
space:
mode:
authorbculkin2442 <bjculkin@mix.wvu.edu>2016-09-28 13:44:04 -0400
committerbculkin2442 <bjculkin@mix.wvu.edu>2016-09-28 13:44:04 -0400
commitf7a10e0e57d6f0ea83643c3d5763ff405af73337 (patch)
tree7a56cbf7e5a8b6fa738d2cf469a86eea14d5d89a /BJC-Utils2/src/main/java/bjc/utils/funcutils/CollectorUtils.java
parentba0a3f53a88842a94ea6a1a6d45f61416b593e47 (diff)
Formatting pass
Diffstat (limited to 'BJC-Utils2/src/main/java/bjc/utils/funcutils/CollectorUtils.java')
-rw-r--r--BJC-Utils2/src/main/java/bjc/utils/funcutils/CollectorUtils.java11
1 files changed, 8 insertions, 3 deletions
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 f7210b5..0a1efd5 100644
--- a/BJC-Utils2/src/main/java/bjc/utils/funcutils/CollectorUtils.java
+++ b/BJC-Utils2/src/main/java/bjc/utils/funcutils/CollectorUtils.java
@@ -31,9 +31,14 @@ public class CollectorUtils {
* The second collector to use
* @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(
- Collector<InitialType, AuxType1, FinalType1> firstCollector,
- Collector<InitialType, AuxType2, FinalType2> secondCollector) {
+ public static <InitialType, AuxType1, AuxType2, FinalType1,
+ FinalType2> Collector<InitialType,
+ IHolder<IPair<AuxType1, AuxType2>>,
+ IPair<FinalType1, FinalType2>> compoundCollect(
+ Collector<InitialType, AuxType1,
+ FinalType1> firstCollector,
+ Collector<InitialType, AuxType2,
+ FinalType2> secondCollector) {
return new CompoundCollector<>(firstCollector, secondCollector);
}
}