Skip to content

Commit b69c5b7

Browse files
committed
[jOOQ#221] Removed more unnecessary comments
1 parent 647a664 commit b69c5b7

File tree

2 files changed

+0
-8
lines changed
  • jOOL-java-8/src/main/java/org/jooq/lambda
  • jOOL/src/main/java/org/jooq/lambda

2 files changed

+0
-8
lines changed

jOOL-java-8/src/main/java/org/jooq/lambda/Agg.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1010,31 +1010,27 @@ private static int percentileIndex(double percentile, int size) {
10101010
}
10111011

10121012
/**
1013-
* CS304 Issue link: https://github.com/jOOQ/jOOL/issues/221
10141013
* Get a {@link Collector} that calculates the derived <code>PERCENTILE_DISC(percentile)</code> function given a specific ordering, producing multiple results.
10151014
*/
10161015
public static <T extends Comparable<? super T>> Collector<T, ?, Seq<T>> medianAll() {
10171016
return medianAllBy(t -> t, naturalOrder());
10181017
}
10191018

10201019
/**
1021-
* CS304 Issue link: https://github.com/jOOQ/jOOL/issues/221
10221020
* Get a {@link Collector} that calculates the derived <code>PERCENTILE_DISC(percentile)</code> function given a specific ordering, producing multiple results.
10231021
*/
10241022
public static <T> Collector<T, ?, Seq<T>> medianAll(Comparator<? super T> comparator) {
10251023
return medianAllBy(t -> t, comparator);
10261024
}
10271025

10281026
/**
1029-
* CS304 Issue link: https://github.com/jOOQ/jOOL/issues/221
10301027
* Get a {@link Collector} that calculates the derived <code>PERCENTILE_DISC(percentile)</code> function given a specific ordering, producing multiple results.
10311028
*/
10321029
public static <T, U extends Comparable<? super U>> Collector<T, ?, Seq<T>> medianAllBy(Function<? super T, ? extends U> function) {
10331030
return medianAllBy(function, naturalOrder());
10341031
}
10351032

10361033
/**
1037-
* CS304 Issue link: https://github.com/jOOQ/jOOL/issues/221
10381034
* Get a {@link Collector} that calculates the derived <code>MEDIAN()</code> function given natural ordering, producing multiple results.
10391035
*/
10401036
public static <T, U> Collector<T, ?, Seq<T>> medianAllBy(Function<? super T, ? extends U> function, Comparator<? super U> comparator) {

jOOL/src/main/java/org/jooq/lambda/Agg.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1010,31 +1010,27 @@ private static int percentileIndex(double percentile, int size) {
10101010
}
10111011

10121012
/**
1013-
* CS304 Issue link: https://github.com/jOOQ/jOOL/issues/221
10141013
* Get a {@link Collector} that calculates the derived <code>PERCENTILE_DISC(percentile)</code> function given a specific ordering, producing multiple results.
10151014
*/
10161015
public static <T extends Comparable<? super T>> Collector<T, ?, Seq<T>> medianAll() {
10171016
return medianAllBy(t -> t, naturalOrder());
10181017
}
10191018

10201019
/**
1021-
* CS304 Issue link: https://github.com/jOOQ/jOOL/issues/221
10221020
* Get a {@link Collector} that calculates the derived <code>PERCENTILE_DISC(percentile)</code> function given a specific ordering, producing multiple results.
10231021
*/
10241022
public static <T> Collector<T, ?, Seq<T>> medianAll(Comparator<? super T> comparator) {
10251023
return medianAllBy(t -> t, comparator);
10261024
}
10271025

10281026
/**
1029-
* CS304 Issue link: https://github.com/jOOQ/jOOL/issues/221
10301027
* Get a {@link Collector} that calculates the derived <code>PERCENTILE_DISC(percentile)</code> function given a specific ordering, producing multiple results.
10311028
*/
10321029
public static <T, U extends Comparable<? super U>> Collector<T, ?, Seq<T>> medianAllBy(Function<? super T, ? extends U> function) {
10331030
return medianAllBy(function, naturalOrder());
10341031
}
10351032

10361033
/**
1037-
* CS304 Issue link: https://github.com/jOOQ/jOOL/issues/221
10381034
* Get a {@link Collector} that calculates the derived <code>MEDIAN()</code> function given natural ordering, producing multiple results.
10391035
*/
10401036
public static <T, U> Collector<T, ?, Seq<T>> medianAllBy(Function<? super T, ? extends U> function, Comparator<? super U> comparator) {

0 commit comments

Comments
 (0)