Skip to content

Commit

Permalink
bugfix: duplicate definition of PhysicsSystem.getBodyInterface()
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Jun 28, 2024
1 parent 70ef746 commit f2920dc
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions src/main/java/com/github/stephengold/joltjni/PhysicsSystem.java
Original file line number Diff line number Diff line change
Expand Up @@ -129,16 +129,6 @@ public void init(int maxBodies, int numBodyMutexes, int maxBodyPairs,
maxContactConstraints, mapVa, ovbFilterVa, ovoFilterVa);
}

/**
* Access the system's {@code BodyInterface}.
*
* @return the pre-existing instance (not null)
*/
public BodyInterface getBodyInterface() {
assert bodyInterface != null;
return bodyInterface;
}

/**
* Improve the performance of future collision detections.
*/
Expand Down

0 comments on commit f2920dc

Please sign in to comment.