diff --git a/java/src/main/java/ai/rapids/cudf/ColumnView.java b/java/src/main/java/ai/rapids/cudf/ColumnView.java index 1dce52f7105..5543f02d6ba 100644 --- a/java/src/main/java/ai/rapids/cudf/ColumnView.java +++ b/java/src/main/java/ai/rapids/cudf/ColumnView.java @@ -1106,9 +1106,7 @@ public Scalar any(DType outType) { * Returns a boolean scalar that is true if all of the elements in * the column are true or non-zero otherwise false. * Null values are skipped. - * @deprecated the only output type supported is BOOL8. */ - @Deprecated public Scalar all() { return all(DType.BOOL8); } @@ -1118,7 +1116,9 @@ public Scalar all() { * if all of the elements in the column are true or non-zero * otherwise false or 0. * Null values are skipped. + * @deprecated the only output type supported is BOOL8. */ + @Deprecated public Scalar all(DType outType) { return reduce(Aggregation.all(), outType); }