From a0944eebf501006f9f542e09a9dfc1934dbdf4b2 Mon Sep 17 00:00:00 2001 From: Alessandro Bellina Date: Thu, 17 Aug 2023 13:17:10 -0500 Subject: [PATCH] Partially address review comments. Fix copyright --- java/src/main/java/ai/rapids/cudf/ColumnVector.java | 4 ++-- java/src/main/java/ai/rapids/cudf/HostColumnVector.java | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/java/src/main/java/ai/rapids/cudf/ColumnVector.java b/java/src/main/java/ai/rapids/cudf/ColumnVector.java index 0595d58c7cc..30e92d2367f 100644 --- a/java/src/main/java/ai/rapids/cudf/ColumnVector.java +++ b/java/src/main/java/ai/rapids/cudf/ColumnVector.java @@ -50,8 +50,8 @@ public interface EventHandler { * * @note the callback is invoked with this `ColumnVector`'s lock held. * - * @param cv - a reference to the ColumnVector we are closing - * @param refCount - the updated ref count for this ColumnVector at the time + * @param cv reference to the ColumnVector we are closing + * @param refCount the updated ref count for this ColumnVector at the time * of invocation */ void onClosed(ColumnVector cv, int refCount); diff --git a/java/src/main/java/ai/rapids/cudf/HostColumnVector.java b/java/src/main/java/ai/rapids/cudf/HostColumnVector.java index c4feb776c7f..7993989825d 100644 --- a/java/src/main/java/ai/rapids/cudf/HostColumnVector.java +++ b/java/src/main/java/ai/rapids/cudf/HostColumnVector.java @@ -1,6 +1,6 @@ /* * - * Copyright (c) 2020-2022, NVIDIA CORPORATION. + * Copyright (c) 2020-2023, NVIDIA CORPORATION. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -50,9 +50,9 @@ public interface EventHandler { * * @note the callback is invoked with this `HostColumnVector`'s lock held. * - * @param cv - a reference to the HostColumnVector we are closing - * @param refCount - the updated ref count for this HostColumnVector at - * the time of invocation + * @param cv reference to the HostColumnVector we are closing + * @param refCount the updated ref count for this HostColumnVector at + * the time of invocation */ void onClosed(HostColumnVector cv, int refCount); }