mirror of
https://github.com/TheOfficialFloW/bd-jb
synced 2024-11-24 09:52:17 -05:00
Change modifiers of IntBase from package-private to protected.
This commit is contained in:
parent
cdffd23f13
commit
b995e5e3d5
@ -23,8 +23,8 @@ public class Buffer {
|
||||
private final int size;
|
||||
|
||||
public Buffer(int size) {
|
||||
this.address = api.malloc(size);
|
||||
this.size = size;
|
||||
this.address = api.malloc(size);
|
||||
}
|
||||
|
||||
public void finalize() {
|
||||
|
@ -23,7 +23,7 @@ public final class Int16 extends IntBase {
|
||||
this.set(value);
|
||||
}
|
||||
|
||||
int elementSize() {
|
||||
protected int elementSize() {
|
||||
return SIZE;
|
||||
}
|
||||
|
||||
|
@ -23,7 +23,7 @@ public final class Int32 extends IntBase {
|
||||
this.set(value);
|
||||
}
|
||||
|
||||
int elementSize() {
|
||||
protected int elementSize() {
|
||||
return SIZE;
|
||||
}
|
||||
|
||||
|
@ -23,7 +23,7 @@ public final class Int64 extends IntBase {
|
||||
this.set(value);
|
||||
}
|
||||
|
||||
int elementSize() {
|
||||
protected int elementSize() {
|
||||
return SIZE;
|
||||
}
|
||||
|
||||
|
@ -23,7 +23,7 @@ public final class Int8 extends IntBase {
|
||||
this.set(value);
|
||||
}
|
||||
|
||||
int elementSize() {
|
||||
protected int elementSize() {
|
||||
return SIZE;
|
||||
}
|
||||
|
||||
|
@ -8,7 +8,7 @@
|
||||
package com.bdjb.api;
|
||||
|
||||
abstract class IntBase {
|
||||
static final API api;
|
||||
protected static final API api;
|
||||
|
||||
static {
|
||||
try {
|
||||
@ -18,23 +18,23 @@ abstract class IntBase {
|
||||
}
|
||||
}
|
||||
|
||||
final long address;
|
||||
protected final long address;
|
||||
|
||||
final int size;
|
||||
protected final int size;
|
||||
|
||||
final int[] dimensions;
|
||||
protected final int[] dimensions;
|
||||
|
||||
IntBase(int[] dimensions) {
|
||||
protected IntBase(int[] dimensions) {
|
||||
this.dimensions = dimensions;
|
||||
this.size = size(dimensions);
|
||||
this.address = api.malloc(size);
|
||||
}
|
||||
|
||||
IntBase() {
|
||||
protected IntBase() {
|
||||
this(new int[] {1});
|
||||
}
|
||||
|
||||
abstract int elementSize();
|
||||
protected abstract int elementSize();
|
||||
|
||||
public void finalize() {
|
||||
api.free(address);
|
||||
|
Loading…
Reference in New Issue
Block a user