Details
-
Improvement
-
Status: Open
-
Major
-
Resolution: Unresolved
-
2.7.1
-
Security Level: No security risk; visible to anyone (Ordinary problems in Xalan projects. Anybody can view the issue.)
-
None
-
PatchAvailable
Description
(Minor) Code has guard code that will never fire... patch removes
if (lookbehind.length() == 1)
{ - char c0 = (lookbehind == null) ? '|' : lookbehind.charAt(0); + char c0 = lookbehind.charAt(0); isToken = (c0 == '|') ? false : (c0 == c); }