Author: nbelaevski
Date: 2009-01-26 09:20:39 -0500 (Mon, 26 Jan 2009)
New Revision: 12423
Modified:
trunk/framework/impl/src/main/java/org/ajax4jsf/javascript/JSMin.java
Log:
https://jira.jboss.org/jira/browse/RF-5935
Modified: trunk/framework/impl/src/main/java/org/ajax4jsf/javascript/JSMin.java
===================================================================
--- trunk/framework/impl/src/main/java/org/ajax4jsf/javascript/JSMin.java 2009-01-26
14:16:53 UTC (rev 12422)
+++ trunk/framework/impl/src/main/java/org/ajax4jsf/javascript/JSMin.java 2009-01-26
14:20:39 UTC (rev 12423)
@@ -199,7 +199,7 @@
case 3:
theB = next();
- if (theB == '/' && (theA == '(' || theA == ',' || theA
== '='|| theA == ':' || theA == '[')) {
+ if (theB == '/' && (theA == '(' || theA == '!' || theA
== '&' || theA == '|' || theA == ',' || theA == '='||
theA == ':' || theA == '[')) {
out.write(theA);
out.write(theB);
for (;;) {