From 124d14d3c3ae297d69c3d08af792ece68909108b Mon Sep 17 00:00:00 2001 From: thatsIch Date: Mon, 18 May 2015 00:02:28 +0200 Subject: [PATCH] Lower case Swap --- src/main/java/appeng/spatial/CachedPlane.java | 4 ++-- src/main/java/appeng/spatial/StorageHelper.java | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/appeng/spatial/CachedPlane.java b/src/main/java/appeng/spatial/CachedPlane.java index ca2c098d..3338167a 100644 --- a/src/main/java/appeng/spatial/CachedPlane.java +++ b/src/main/java/appeng/spatial/CachedPlane.java @@ -1,6 +1,6 @@ /* * This file is part of Applied Energistics 2. - * Copyright (c) 2013 - 2014, AlgorithmX2, All rights reserved. + * Copyright (c) 2013 - 2015, AlgorithmX2, All rights reserved. * * Applied Energistics 2 is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by @@ -189,7 +189,7 @@ public class CachedPlane return mr.getHandler( te ); } - void Swap( CachedPlane dst ) + void swap( CachedPlane dst ) { IMovableRegistry mr = AEApi.instance().registries().movable(); diff --git a/src/main/java/appeng/spatial/StorageHelper.java b/src/main/java/appeng/spatial/StorageHelper.java index 15e036f8..90d4ab05 100644 --- a/src/main/java/appeng/spatial/StorageHelper.java +++ b/src/main/java/appeng/spatial/StorageHelper.java @@ -1,6 +1,6 @@ /* * This file is part of Applied Energistics 2. - * Copyright (c) 2013 - 2014, AlgorithmX2, All rights reserved. + * Copyright (c) 2013 - 2015, AlgorithmX2, All rights reserved. * * Applied Energistics 2 is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by @@ -222,7 +222,7 @@ public class StorageHelper CachedPlane cSrc = new CachedPlane( src, x, y, z, x + scaleX, y + scaleY, z + scaleZ ); // do nearly all the work... swaps blocks, tiles, and block ticks - cSrc.Swap( cDst ); + cSrc.swap( cDst ); List srcE = src.getEntitiesWithinAABB( Entity.class, srcBox ); List dstE = dst.getEntitiesWithinAABB( Entity.class, dstBox );