Fix issue #1; comment updates.

This commit is contained in:
Major-
2013-11-03 03:21:34 +00:00
parent b920ab34a7
commit 5f595c2746
50 changed files with 324 additions and 340 deletions
@@ -18,7 +18,7 @@ public class TestGamePacketEncoder {
/**
* Tests the {@link GamePacketEncoder#encode(org.jboss.netty.channel.ChannelHandlerContext, org.jboss.netty.channel.Channel, Object)}
* method.
* @throws Exception if an error occurs.
* @throws Exception If an error occurs.
*/
@Test
public void testEncode() throws Exception {
@@ -15,7 +15,7 @@ public class TestCompressionUtil {
/**
* Tests the {@link CompressionUtil#gzip(byte[])} and
* {@link CompressionUtil#ungzip(byte[], byte[])} methods.
* @throws IOException if an I/O error occurs.
* @throws IOException If an I/O error occurs.
*/
@Test
public void testGzip() throws IOException {
@@ -29,7 +29,7 @@ public class TestCompressionUtil {
/**
* Tests the {@link CompressionUtil#bzip2(byte[])} and
* {@link CompressionUtil#unbzip2(byte[], byte[])} methods.
* @throws IOException if an I/O error occurs.
* @throws IOException If an I/O error occurs.
*/
@Test
public void testBzip2() throws IOException {
+4 -4
View File
@@ -20,8 +20,8 @@ public final class TestXmlParser {
/**
* A test for the {@link XmlParser#parse(java.io.InputStream)} method.
* @throws SAXException if a SAX error occurs.
* @throws IOException if an I/O error occurs.
* @throws SAXException If a SAX error occurs.
* @throws IOException If an I/O error occurs.
*/
@Test
public void testParseInputStream() throws SAXException, IOException {
@@ -66,8 +66,8 @@ public final class TestXmlParser {
/**
* A test for the {@link XmlParser#parse(java.io.Reader)} method.
* @throws SAXException if a SAX error occurs.
* @throws IOException if an I/O error occurs.
* @throws SAXException If a SAX error occurs.
* @throws IOException If an I/O error occurs.
*/
@Test
public void testParseReader() throws SAXException, IOException {