Skip to content

Commit be459bd

Browse files
committed
delete 3 unused constructors
1 parent 0d51061 commit be459bd

File tree

3 files changed

+0
-36
lines changed

3 files changed

+0
-36
lines changed

src/main/java/com/github/stephengold/joltjni/RMat44Array.java

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -42,18 +42,6 @@ public RMat44Array(int length) {
4242
long arrayVa = create(length);
4343
setVirtualAddress(arrayVa, () -> free(arrayVa));
4444
}
45-
46-
/**
47-
* Instantiate with the specified container and native object.
48-
*
49-
* @param container the containing object, or {@code null} if none
50-
* @param arrayVa the virtual address of the native object to assign (not
51-
* zero)
52-
*/
53-
RMat44Array(JoltPhysicsObject container, long arrayVa) {
54-
super(container, arrayVa);
55-
}
56-
5745
// *************************************************************************
5846
// new methods exposed
5947

src/main/java/com/github/stephengold/joltjni/ShapeRefCArray.java

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -40,18 +40,6 @@ public ShapeRefCArray(int length) {
4040
long arrayVa = create(length);
4141
setVirtualAddress(arrayVa, () -> free(arrayVa));
4242
}
43-
44-
/**
45-
* Instantiate with the specified container and native object.
46-
*
47-
* @param container the containing object, or {@code null} if none
48-
* @param arrayVa the virtual address of the native object to assign (not
49-
* zero)
50-
*/
51-
ShapeRefCArray(JoltPhysicsObject container, long arrayVa) {
52-
super(container, arrayVa);
53-
}
54-
5543
// *************************************************************************
5644
// new methods exposed
5745

src/main/java/com/github/stephengold/joltjni/TransformedShapeArray.java

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -42,18 +42,6 @@ public TransformedShapeArray(int length) {
4242
long arrayVa = create(length);
4343
setVirtualAddress(arrayVa, () -> free(arrayVa));
4444
}
45-
46-
/**
47-
* Instantiate with the specified container and native object.
48-
*
49-
* @param container the containing object, or {@code null} if none
50-
* @param arrayVa the virtual address of the native object to assign (not
51-
* zero)
52-
*/
53-
TransformedShapeArray(JoltPhysicsObject container, long arrayVa) {
54-
super(container, arrayVa);
55-
}
56-
5745
// *************************************************************************
5846
// new methods exposed
5947

0 commit comments

Comments
 (0)