You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ma...@apache.org on 2014/09/02 18:44:29 UTC

svn commit: r1622066 - /tomcat/trunk/java/org/apache/tomcat/util/http/parser/Cookie.java

Author: markt
Date: Tue Sep  2 16:44:28 2014
New Revision: 1622066

URL: http://svn.apache.org/r1622066
Log:
Trivial whitespace

Modified:
    tomcat/trunk/java/org/apache/tomcat/util/http/parser/Cookie.java

Modified: tomcat/trunk/java/org/apache/tomcat/util/http/parser/Cookie.java
URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/tomcat/util/http/parser/Cookie.java?rev=1622066&r1=1622065&r2=1622066&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/tomcat/util/http/parser/Cookie.java (original)
+++ tomcat/trunk/java/org/apache/tomcat/util/http/parser/Cookie.java Tue Sep  2 16:44:28 2014
@@ -76,7 +76,7 @@ public class Cookie {
 
     static {
         // %x21 / %x23-2B / %x2D-3A / %x3C-5B / %x5D-7E (RFC6265)
-        // %x80 to %xFF                            (UTF-8)
+        // %x80 to %xFF                                 (UTF-8)
         for (int i = 0; i < 256; i++) {
             if (i < 0x21 || i == QUOTE_BYTE || i == COMMA_BYTE ||
                     i == SEMICOLON_BYTE || i == SLASH_BYTE || i == DEL_BYTE) {
@@ -365,6 +365,7 @@ public class Cookie {
         skipUntilSemiColonOrComma(bb);
     }
 
+
     private static void skipLWS(ByteBuffer bb) {
         while(bb.hasRemaining()) {
             byte b = bb.get();



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org