velocity-tools-generic/src/main/java/org/apache/velocity/tools/generic/ImportTool.java [55:74]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    protected transient ImportSupport importSupport = null;

    /**
     * Importsupport initialization
     * @param config configuration values
     */
    protected synchronized void initializeImportSupport(ValueParser config)
    {
        if (importSupport == null)
        {
            importSupport = new ImportSupport();
            importSupport.configure(config);
        }
    }

    /**
     * Configuration
     * @param values configuration values
     */
    protected void configure(ValueParser values)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



velocity-tools-generic/src/main/java/org/apache/velocity/tools/generic/XmlTool.java [97:116]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    protected transient ImportSupport importSupport = null;

    /**
     * ImportSupport initialization
     * @param config configuration values
     */
    protected synchronized void initializeImportSupport(ValueParser config)
    {
        if (importSupport == null)
        {
            importSupport = new ImportSupport();
            importSupport.configure(config);
        }
    }

    /**
     * Configuration.
     * @param values configuration values
     */
    protected void configure(ValueParser values)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



