rename IDhApiUnsafeWrapper method

This commit is contained in:
James Seibel
2023-06-17 16:36:01 -05:00
parent d0819fb6c1
commit fa8a62b8a9
4 changed files with 5 additions and 14 deletions
@@ -24,7 +24,7 @@ import com.seibel.lod.coreapi.interfaces.dependencyInjection.IBindable;
/**
* @author James Seibel
* @version 2022-9-16
* @version 2023-6-17
*/
public interface IDimensionTypeWrapper extends IDhApiDimensionTypeWrapper, IBindable
{
@@ -35,6 +35,4 @@ public interface IDimensionTypeWrapper extends IDhApiDimensionTypeWrapper, IBind
boolean hasSkyLight();
Object getWrappedMcObject_UNSAFE();
}
@@ -31,7 +31,7 @@ import com.seibel.lod.core.wrapperInterfaces.chunk.IChunkWrapper;
* Can be either a Server world or a Client world.
*
* @author James Seibel
* @version 2022-9-16
* @version 2023-6-17
*/
public interface ILevelWrapper extends IDhApiLevelWrapper, IBindable
{
@@ -65,9 +65,6 @@ public interface ILevelWrapper extends IDhApiLevelWrapper, IBindable
@Deprecated
IBiomeWrapper getBiome(DhBlockPos pos);
@Override
Object getWrappedMcObject_UNSAFE();
// TODO implement onUnload
// necessary so ChunkToLodBuilder can have its cache cleared after the level closes
@@ -13,7 +13,7 @@ import com.seibel.lod.api.interfaces.world.IDhApiLevelWrapper;
public class LevelWrapperTest implements IDhApiLevelWrapper
{
@Override
public Object getWrappedMcObject_UNSAFE() { return null; }
public Object getWrappedMcObject() { return null; }
@Override
public IDhApiDimensionTypeWrapper getDimensionType() { return null; }