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:
Gary D. Gregory 2005-07-30 21:53:49 +00:00
parent 914aec8ee8
commit be164675fe
1 changed files with 3 additions and 1 deletions

View File

@ -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) {