Skip to content

Commit

Permalink
Make the JNI API to get list offsets as a view public.
Browse files Browse the repository at this point in the history
  • Loading branch information
revans2 committed May 6, 2022
1 parent de0f7e0 commit 90dd6e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion java/src/main/java/ai/rapids/cudf/ColumnView.java
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ public final ColumnView getChildColumnView(int childIndex) {
/**
* Get a ColumnView that is the offsets for this list.
*/
ColumnView getListOffsetsView() {
public ColumnView getListOffsetsView() {
assert(getType().equals(DType.LIST));
return new ColumnView(getListOffsetCvPointer(viewHandle));
}
Expand Down

0 comments on commit 90dd6e6

Please sign in to comment.