Removed trailing whitespaces.

This commit is contained in:
Wizjany
2011-09-24 15:32:03 -04:00
parent b5b55a2775
commit f90e47da9a
45 changed files with 402 additions and 402 deletions

View File

@@ -42,9 +42,9 @@ public class Chunk {
/**
* Construct the chunk with a compound tag.
*
* @param tag
* @throws DataException
*
* @param tag
* @throws DataException
*/
public Chunk(CompoundTag tag) throws DataException {
rootTag = tag;
@@ -117,7 +117,7 @@ public class Chunk {
/**
* Used to load the tile entities.
*
*
* @throws DataException
*/
private void populateTileEntities() throws DataException {
@@ -131,7 +131,7 @@ public class Chunk {
if (!(tag instanceof CompoundTag)) {
throw new InvalidFormatException("CompoundTag expected in TileEntities");
}
CompoundTag t = (CompoundTag)tag;
int x = 0;
@@ -167,7 +167,7 @@ public class Chunk {
* Get the map of tags keyed to strings for a block's tile entity data. May
* return null if there is no tile entity data. Not public yet because
* what this function returns isn't ideal for usage.
*
*
* @param pos
* @return
* @throws DataException
@@ -206,7 +206,7 @@ public class Chunk {
} else {
block = new BaseBlock(id, data);
}
if (block instanceof TileEntityBlock) {
Map<String,Tag> tileEntity = getBlockTileEntity(pos);
((TileEntityBlock)block).fromTileEntityNBT(tileEntity);

View File

@@ -31,7 +31,7 @@ import com.sk89q.worldedit.*;
public abstract class ChunkStore {
/**
* Convert a position to a chunk.
*
*
* @param pos
* @return
*/
@@ -75,10 +75,10 @@ public abstract class ChunkStore {
public void close() throws IOException {
}
/**
* Returns whether the chunk store is of this type.
*
*
* @return
*/
public abstract boolean isValid();

View File

@@ -30,7 +30,7 @@ public class DataException extends Exception {
public DataException(String msg) {
super(msg);
}
public DataException() {
super();
}

View File

@@ -35,7 +35,7 @@ public class FileLegacyChunkStore extends LegacyChunkStore {
/**
* Create an instance. The passed path is the folder to read the
* chunk files from.
*
*
* @param path
*/
public FileLegacyChunkStore(File path) {

View File

@@ -37,7 +37,7 @@ import java.util.zip.GZIPInputStream;
public abstract class LegacyChunkStore extends ChunkStore {
/**
* Get the filename of a chunk.
*
*
* @param pos
* @param separator
* @return
@@ -45,7 +45,7 @@ public abstract class LegacyChunkStore extends ChunkStore {
public static String getFilename(Vector2D pos, String separator) {
int x = pos.getBlockX();
int z = pos.getBlockZ();
String folder1 = Integer.toString(divisorMod(x, 64), 36);
String folder2 = Integer.toString(divisorMod(z, 64), 36);
String filename = "c." + Integer.toString(x, 36)
@@ -57,7 +57,7 @@ public abstract class LegacyChunkStore extends ChunkStore {
/**
* Get the filename of a chunk, using the system's default path
* separator.
*
*
* @param pos
* @return
*/
@@ -78,7 +78,7 @@ public abstract class LegacyChunkStore extends ChunkStore {
throws DataException, IOException {
int x = pos.getBlockX();
int z = pos.getBlockZ();
String folder1 = Integer.toString(divisorMod(x, 64), 36);
String folder2 = Integer.toString(divisorMod(z, 64), 36);
String filename = "c." + Integer.toString(x, 36)
@@ -135,7 +135,7 @@ public abstract class LegacyChunkStore extends ChunkStore {
/**
* Get the input stream for a chunk file.
*
*
* @param f1
* @param f2
* @param name

View File

@@ -27,7 +27,7 @@ import com.sk89q.worldedit.Vector2D;
*/
public class MissingChunkException extends ChunkStoreException {
private static final long serialVersionUID = 8013715483709973489L;
private Vector2D pos;
public MissingChunkException() {
@@ -41,7 +41,7 @@ public class MissingChunkException extends ChunkStoreException {
/**
* Get chunk position in question. May be null if unknown.
*
*
* @return
*/
public Vector2D getChunkPosition() {

View File

@@ -26,7 +26,7 @@ package com.sk89q.worldedit.data;
public class MissingWorldException extends ChunkStoreException {
private static final long serialVersionUID = 6487395784195658467L;
private String worldname;
public MissingWorldException() {
@@ -36,7 +36,7 @@ public class MissingWorldException extends ChunkStoreException {
public MissingWorldException(String worldname) {
super();
this.worldname = worldname;
}
}
public MissingWorldException(String msg, String worldname) {
super(msg);
@@ -45,7 +45,7 @@ public class MissingWorldException extends ChunkStoreException {
/**
* Get name of the world in question. May be null if unknown.
*
*
* @return
*/
public String getWorldname() {

View File

@@ -54,13 +54,13 @@ public class TrueZipLegacyChunkStore extends LegacyChunkStore {
* @param zipFile
* @param folder
* @throws IOException
* @throws ZipException
* @throws ZipException
*/
public TrueZipLegacyChunkStore(File zipFile, String folder)
throws IOException, ZipException {
this.zipFile = zipFile;
this.folder = folder;
zip = new ZipFile(zipFile);
}
@@ -107,14 +107,14 @@ public class TrueZipLegacyChunkStore extends LegacyChunkStore {
if (testEntry == null) {
// Let's try a world/ sub-directory
testEntry = getEntry("world/level.dat");
Pattern pattern = Pattern.compile(".*[\\\\/]level\\.dat$");
// So not there either...
if (testEntry == null) {
for (Enumeration<? extends ZipEntry> e = zip.entries();
e.hasMoreElements(); ) {
testEntry = (ZipEntry)e.nextElement();
// Whoo, found level.dat!
@@ -141,10 +141,10 @@ public class TrueZipLegacyChunkStore extends LegacyChunkStore {
throw new IOException("Failed to read " + file + " in ZIP");
}
}
/**
* Get an entry from the ZIP, trying both types of slashes.
*
*
* @param file
* @return
*/

View File

@@ -58,7 +58,7 @@ public class ZippedLegacyChunkStore extends LegacyChunkStore {
throws IOException, ZipException {
this.zipFile = zipFile;
this.folder = folder;
zip = new ZipFile(zipFile);
}
@@ -104,14 +104,14 @@ public class ZippedLegacyChunkStore extends LegacyChunkStore {
if (testEntry == null) {
// Let's try a world/ sub-directory
testEntry = getEntry("world/level.dat");
Pattern pattern = Pattern.compile(".*[\\\\/]level\\.dat$");
// So not there either...
if (testEntry == null) {
for (Enumeration<? extends ZipEntry> e = zip.entries();
e.hasMoreElements(); ) {
testEntry = (ZipEntry)e.nextElement();
// Whoo, found level.dat!
@@ -138,10 +138,10 @@ public class ZippedLegacyChunkStore extends LegacyChunkStore {
throw new IOException("Failed to read " + file + " in ZIP");
}
}
/**
* Get an entry from the ZIP, trying both types of slashes.
*
*
* @param file
* @return
*/