velocity-engine-core/src/main/java/org/apache/velocity/runtime/parser/node/IndentationFixer.java [129:139]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        String prefix = node.getPrefix();
        if (prefix.length() > 0)
        {
            if (extraIndentation == null)
            {
                fillExtraIndentation(prefix);
            }
            if (extraIndentation.length() > 0)
            {
                Matcher matcher = fix.matcher(prefix);
                node.setPrefix(matcher.replaceAll(parentIndentation));
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



velocity-engine-core/src/main/java/org/apache/velocity/runtime/parser/node/IndentationFixer.java [211:221]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        String prefix = node.getPrefix();
        if (prefix.length() > 0)
        {
            if (extraIndentation == null)
            {
                fillExtraIndentation(prefix);
            }
            if (extraIndentation.length() > 0)
            {
                Matcher matcher = fix.matcher(prefix);
                node.setPrefix(matcher.replaceAll(parentIndentation));
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



