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:
parent
bd9244d1e3
commit
2d4e279d19
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue