Line was longer than 120 chars - shortening

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@428644 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Henri Yandell 2006-08-04 06:35:51 +00:00
parent bd9244d1e3
commit 2d4e279d19
1 changed files with 2 additions and 1 deletions

View File

@ -423,7 +423,8 @@ public class StrSubstitutor {
pos++;
} else {
// found variable end marker
String varName = new String(chars, startPos + startMatchLen, pos - startPos - startMatchLen);
String varName = new String(chars, startPos + startMatchLen,
pos - startPos - startMatchLen);
pos += endMatchLen;
int endPos = pos;