On Tue, Feb 15, 2011 at 9:00 PM, xiaoming shi wrote:
> In the file
> ./struts-2.2.1/src/plugins/embeddedjsp/src/main/java/org/apache/struts2/jasper/compiler/JspUtil.java
> line: 100
>
> In the function "escapeQuotes", it keeps on searching the input string
> repeatedly. The complexity is O(N**2) w
On Tue, Feb 15, 2011 at 9:00 PM, xiaoming shi wrote:
> How can I report a bug?
File a JIRA: https://issues.apache.org/jira/browse/WW
(Although I'd classify this as an enhancement, not a bug.)
Attaching a patch (and maybe a unit test) is the quickest way to get
something fixed :)
Dave
-
2011/2/16 xiaoming shi :
> Hi Guys,
>
> How can I report a bug?
Fill an issue here [1] with path would be the best :-)
[1] https://issues.apache.org/jira/browse/WW
Regards
--
Łukasz
+ 48 606 323 122 http://www.lenart.org.pl/
Kapituła Javarsovia http://javarsovia.pl
---
Hi Guys,
How can I report a bug?
In the file
./struts-2.2.1/src/plugins/embeddedjsp/src/main/java/org/apache/struts2/jasper/compiler/JspUtil.java
line: 100
In the function "escapeQuotes", it keeps on searching the input string
repeatedly. The complexity is O(N**2) which can be O(N).
I think th