Skip to content

Commit 377d377

Browse files
Cleanup #494
Removing debug content.
1 parent cd6d803 commit 377d377

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/main/java/org/owasp/esapi/codecs/CSSCodec.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,15 +80,13 @@ public Character decodeCharacter(PushbackSequence<Character> input)
8080
{
8181
input.mark();
8282
Character first = input.next();
83-
System.out.println("First: " + first);
8483
if (first == null || first != '\\')
8584
{
8685
input.reset();
8786
return null;
8887
}
8988

9089
Character second = input.next();
91-
System.out.println("Second: " );
9290
if (second == null) {
9391
input.reset();
9492
return null;

0 commit comments

Comments
 (0)