Skip to content

Commit

Permalink
Make constructor of DeviceMemoryBufferView public (#17265)
Browse files Browse the repository at this point in the history
Make constructor of DeviceMemoryBufferView and ContiguousTable public.

Authors:
  - Renjie Liu (https://github.com/liurenjie1024)

Approvers:
  - Jason Lowe (https://github.com/jlowe)

URL: #17265
  • Loading branch information
liurenjie1024 authored Nov 8, 2024
1 parent 0f1ae26 commit 263a7ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions java/src/main/java/ai/rapids/cudf/DeviceMemoryBufferView.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
*
* Copyright (c) 2019-2020, NVIDIA CORPORATION.
* Copyright (c) 2019-2024, 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 All @@ -24,7 +24,7 @@
* that is backing it.
*/
public class DeviceMemoryBufferView extends BaseDeviceMemoryBuffer {
DeviceMemoryBufferView(long address, long lengthInBytes) {
public DeviceMemoryBufferView(long address, long lengthInBytes) {
// Set the cleaner to null so we don't end up releasing anything
super(address, lengthInBytes, (MemoryBufferCleaner) null);
}
Expand Down

0 comments on commit 263a7ff

Please sign in to comment.