Index: org/apache/jasper/JspCompilationContext.java =================================================================== --- org/apache/jasper/JspCompilationContext.java (revision 831814) +++ org/apache/jasper/JspCompilationContext.java (working copy) @@ -678,7 +678,7 @@ protected static final String canonicalURI(String s) { if (s == null) return null; - StringBuffer result = new StringBuffer(); + StringBuilder result = new StringBuilder(); final int len = s.length(); int pos = 0; while (pos < len) {