From 599ad01729a4f716c823b154d33e927ee0321323 Mon Sep 17 00:00:00 2001 From: stephengold Date: Fri, 20 Sep 2024 16:50:54 -0700 Subject: [PATCH] BroadPhaseQuery: add a no-arg constructor --- .../com/github/stephengold/joltjni/BroadPhaseQuery.java | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/main/java/com/github/stephengold/joltjni/BroadPhaseQuery.java b/src/main/java/com/github/stephengold/joltjni/BroadPhaseQuery.java index fa92cec0..40dac088 100644 --- a/src/main/java/com/github/stephengold/joltjni/BroadPhaseQuery.java +++ b/src/main/java/com/github/stephengold/joltjni/BroadPhaseQuery.java @@ -41,6 +41,13 @@ public class BroadPhaseQuery extends NonCopyable { // ************************************************************************* // constructors + /** + * Instantiate with no native object assigned. + */ + BroadPhaseQuery() { + this.system = null; + } + /** * Instantiate with the specified native object assigned but not owned. *