Format tweak in a while statement to attempt to get Clover to show better code coverage.
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@226584 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
914aec8ee8
commit
be164675fe
|
@ -343,7 +343,9 @@ public class VariableFormatter {
|
|||
Object objResult = null;
|
||||
int objLen = 0;
|
||||
|
||||
while (((begin = base.indexOf(getVariablePrefix(), prec + getVariableSuffix().length())) > -1)
|
||||
while (((begin = base.indexOf(
|
||||
getVariablePrefix(),
|
||||
prec + getVariableSuffix().length())) > -1)
|
||||
&& ((end = findEndToken(base, begin)) > -1)) {
|
||||
int escBegin = escaped(base, begin);
|
||||
if (escBegin >= 0) {
|
||||
|
|
Loading…
Reference in New Issue