Author: nbelaevski
Date: 2007-10-16 14:13:52 -0400 (Tue, 16 Oct 2007)
New Revision: 3406
Modified:
trunk/framework/impl/src/main/java/org/ajax4jsf/javascript/JSMin.java
Log:
http://jira.jboss.com/jira/browse/RF-1129
Modified: trunk/framework/impl/src/main/java/org/ajax4jsf/javascript/JSMin.java
===================================================================
--- trunk/framework/impl/src/main/java/org/ajax4jsf/javascript/JSMin.java 2007-10-16
17:50:03 UTC (rev 3405)
+++ trunk/framework/impl/src/main/java/org/ajax4jsf/javascript/JSMin.java 2007-10-16
18:13:52 UTC (rev 3406)
@@ -213,7 +213,7 @@
case 3:
theB = next();
- if (theB == '/' && (theA == '(' || theA == ',' || theA
== '='|| theA == ':')) {
+ if (theB == '/' && (theA == '(' || theA == ',' || theA
== '='|| theA == ':' || theA == '[')) {
out.write(theA);
out.write(theB);
for (;;) {