Whitespace + general cleanup

This commit is contained in:
Erik Broes
2011-05-14 16:29:42 +02:00
parent e54d8c3352
commit 309846d732
87 changed files with 474 additions and 421 deletions

View File

@@ -2,7 +2,7 @@ package net.minecraft.server;
import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.io.IOException;
import java.io.IOException; // CraftBukkit
public class Packet3Chat extends Packet {
@@ -11,11 +11,11 @@ public class Packet3Chat extends Packet {
public Packet3Chat() {}
public Packet3Chat(String s) {
// CraftBukkit start - handle this later
//if (s.length() > 119) {
// s = s.substring(0, 119);
//}
// CraftBukkit end
/* CraftBukkit start - handle this later
if (s.length() > 119) {
s = s.substring(0, 119);
}
// CraftBukkit end */
this.a = s;
}