Fixed indentation

This commit is contained in:
Trustin Lee 2009-08-27 06:44:12 +00:00
parent b083f9eb2e
commit 7388b961a6

View File

@ -138,9 +138,9 @@ public class CookieEncoder {
}
}
if (cookie.isSecure()) {
sb.append(CookieHeaderNames.SECURE);
sb.append((char) HttpCodecUtil.SEMICOLON);
}
sb.append(CookieHeaderNames.SECURE);
sb.append((char) HttpCodecUtil.SEMICOLON);
}
if (cookie.getVersion() >= 1) {
if (cookie.getComment() != null) {
add(sb, CookieHeaderNames.COMMENT, cookie.getComment());