Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Moore committed May 18, 2010
1 parent 0a08b3b commit d0464c4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/org/mozilla/javascript/TokenStream.java
Expand Up @@ -703,7 +703,8 @@ final int getToken() throws IOException
String s1 = sb.toString();
String s2 = s1.trim();
if (s1.startsWith("!")) {
// Remove the leading '!'
// Remove the leading '!' ** EDIT actually don't remove it:
// http://yuilibrary.com/projects/yuicompressor/ticket/2528008
// this.string = s1.substring(1);
this.string = s1;
return Token.KEEPCOMMENT;
Expand Down

0 comments on commit d0464c4

Please sign in to comment.