From 6aa096de57dc009111cfa309895cf70fdd007764 Mon Sep 17 00:00:00 2001 From: James Seibel Date: Thu, 19 Aug 2021 19:41:56 -0500 Subject: [PATCH] Remove an incorrect import --- src/main/java/com/seibel/lod/objects/LevelContainer.java | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/main/java/com/seibel/lod/objects/LevelContainer.java b/src/main/java/com/seibel/lod/objects/LevelContainer.java index 78437fa70..cfe5b7f44 100644 --- a/src/main/java/com/seibel/lod/objects/LevelContainer.java +++ b/src/main/java/com/seibel/lod/objects/LevelContainer.java @@ -1,11 +1,9 @@ package com.seibel.lod.objects; -import com.seibel.lod.handlers.LodDimensionFileHandler; -import com.seibel.lod.util.LodUtil; -import com.sun.org.apache.xpath.internal.operations.Bool; - import java.io.Serializable; +import com.seibel.lod.util.LodUtil; + public class LevelContainer implements Serializable { public static final char DATA_DELIMITER = ','; @@ -76,7 +74,8 @@ public class LevelContainer implements Serializable { } - public String toString() { + @Override + public String toString() { StringBuilder stringBuilder = new StringBuilder(); int combinedCol; int size = (int) Math.pow(2, LodUtil.REGION_DETAIL_LEVEL - detailLevel);