We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7199b3f commit 52b27caCopy full SHA for 52b27ca
src/main/java/com/simsilica/ethereal/zone/StateBlock.java
@@ -36,6 +36,7 @@
36
37
package com.simsilica.ethereal.zone;
38
39
+import java.util.ArrayList;
40
import java.util.List;
41
42
import com.simsilica.mathd.Quatd;
src/main/java/com/simsilica/ethereal/zone/Zone.java
@@ -109,7 +109,7 @@ public final boolean isEmpty() {
109
*/
110
public boolean commitUpdate() {
111
if( log.isTraceEnabled() ) {
112
- log.trace(log.info(key + ":commitUpdate() empty:" + current.isEmpty() + " children:" + children);
+ log.trace(key + ":commitUpdate() empty:" + current.isEmpty() + " children:" + children);
113
}
114
if( current.isEmpty() ) {
115
// Return true if history is not empty... false otherwise.
0 commit comments