Skip to content

Commit

Permalink
Partially address review comments. Fix copyright
Browse files Browse the repository at this point in the history
  • Loading branch information
abellina committed Aug 17, 2023
1 parent ad87fbf commit a0944ee
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions java/src/main/java/ai/rapids/cudf/ColumnVector.java
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
8 changes: 4 additions & 4 deletions java/src/main/java/ai/rapids/cudf/HostColumnVector.java
Original file line number Diff line number Diff line change
@@ -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.
Expand Down Expand Up @@ -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);
}
Expand Down

0 comments on commit a0944ee

Please sign in to comment.