Updated author tags

This commit is contained in:
Trustin Lee 2009-03-13 13:57:24 +00:00
parent 22eac299d5
commit 32ddc4541d
6 changed files with 12 additions and 3 deletions

View File

@ -26,6 +26,7 @@ import java.util.Set;
/**
* @author The Netty Project (netty-dev@lists.jboss.org)
* @author Trustin Lee (tlee@redhat.com)
* @author Andy Taylor (andy.taylor@jboss.org)
* @version $Rev$, $Date$
*/
public interface Cookie extends Comparable<Cookie> {

View File

@ -29,6 +29,7 @@ import org.jboss.netty.util.CaseIgnoringComparator;
/**
* @author The Netty Project (netty-dev@lists.jboss.org)
* @author Andy Taylor (andy.taylor@jboss.org)
* @author Trustin Lee (tlee@redhat.com)
* @version $Rev$, $Date$
*/
public class CookieDecoder {

View File

@ -30,6 +30,7 @@ import org.jboss.netty.util.CaseIgnoringComparator;
/**
* @author The Netty Project (netty-dev@lists.jboss.org)
* @author Andy Taylor (andy.taylor@jboss.org)
* @author Trustin Lee (tlee@redhat.com)
* @version $Rev$, $Date$
*/
public class CookieEncoder {

View File

@ -265,7 +265,7 @@ public class DefaultCookie implements Cookie {
switch (c) {
case '\r': case '\n': case '\f': case 0x0b: case ';':
throw new IllegalArgumentException(
value + " contains one of the following prohibited characters: " +
name + " contains one of the following prohibited characters: " +
";\\r\\n\\f\\v (" + value + ')');
}
}

View File

@ -28,7 +28,10 @@ import java.util.Map;
import org.junit.Test;
/**
* @author <a href="mailto:andy.taylor@jboss.org">Andy Taylor</a>
* @author The Netty Project (netty-dev@lists.jboss.org)
* @author Andy Taylor (andy.taylor@jboss.org)
* @author Trustin Lee (tlee@redhat.com)
* @version $Rev$, $Date$
*/
public class CookieDecoderTest {
@Test

View File

@ -27,7 +27,10 @@ import org.junit.Test;
/**
* @author <a href="mailto:andy.taylor@jboss.org">Andy Taylor</a>
* @author The Netty Project (netty-dev@lists.jboss.org)
* @author Andy Taylor (andy.taylor@jboss.org)
* @author Trustin Lee (tlee@redhat.com)
* @version $Rev$, $Date$
*/
public class CookieEncoderTest {
@Test