velocity-tools-view/src/main/java/org/apache/velocity/tools/view/ImportTool.java [53:64]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    protected synchronized void initializeImportSupport(ValueParser config)
    {
        if (importSupport == null)
        {
            importSupport = new ViewImportSupport();
            importSupport.configure(config);
        }
    }

    protected void configure(ValueParser values)
    {
        super.configure(values);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



velocity-tools-view/src/main/java/org/apache/velocity/tools/view/XmlTool.java [45:60]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    protected synchronized void initializeImportSupport(ValueParser config)
    {
        if (importSupport == null)
        {
            importSupport = new ViewImportSupport();
            importSupport.configure(config);
        }
    }

    /**
     * Configuration. Parses request body if appropriate.
     * @param values configuration values
     */
    protected void configure(ValueParser values)
    {
        super.configure(values);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



