Skip to content

Commit

Permalink
Remove extra this.
Browse files Browse the repository at this point in the history
  • Loading branch information
ds58 committed Feb 13, 2025
1 parent 5c06a2f commit f9ba4f3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public class SerializedPayload implements AutoCloseable
public SerializedPayload(int maxSize)
{
this.max_size = maxSize;
this.dataPointer = new BytePointer(maxSize);
dataPointer = new BytePointer(maxSize);
// Initialize the entire buffer to zeros
Pointer.memset(dataPointer, 0, (long) dataPointer.sizeof() * maxSize);
this.data = dataPointer.asByteBuffer();
Expand Down

0 comments on commit f9ba4f3

Please sign in to comment.