Skip to content

Commit 52b27ca

Browse files
committed
Fix some compiler errors caused by my recent commits... which is
what I get for doing some 'harmless' cleanup without rebuilding before commit...
1 parent 7199b3f commit 52b27ca

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/main/java/com/simsilica/ethereal/zone/StateBlock.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636

3737
package com.simsilica.ethereal.zone;
3838

39+
import java.util.ArrayList;
3940
import java.util.List;
4041

4142
import com.simsilica.mathd.Quatd;

src/main/java/com/simsilica/ethereal/zone/Zone.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ public final boolean isEmpty() {
109109
*/
110110
public boolean commitUpdate() {
111111
if( log.isTraceEnabled() ) {
112-
log.trace(log.info(key + ":commitUpdate() empty:" + current.isEmpty() + " children:" + children);
112+
log.trace(key + ":commitUpdate() empty:" + current.isEmpty() + " children:" + children);
113113
}
114114
if( current.isEmpty() ) {
115115
// Return true if history is not empty... false otherwise.

0 commit comments

Comments
 (0)