extscript-core-root/extscript-cdi/src/main/java/org/apache/myfaces/extensions/scripting/cdi/core/CDIThrowAwayClassloader.java [121:167]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            return Collections.enumeration(tmpList);
        }
        return urls;
    }

    public static URL getSystemResource(String s)
    {
        return ClassLoader.getSystemResource(s);
    }

    public static Enumeration<URL> getSystemResources(String s) throws IOException
    {
        return ClassLoader.getSystemResources(s);
    }

    public static InputStream getSystemResourceAsStream(String s)
    {
        return ClassLoader.getSystemResourceAsStream(s);
    }

    public static ClassLoader getSystemClassLoader()
    {
        return ClassLoader.getSystemClassLoader();
    }

    @Override
    public void setDefaultAssertionStatus(boolean b)
    {
        _delegate.setDefaultAssertionStatus(b);
    }

    @Override
    public void setPackageAssertionStatus(String s, boolean b)
    {
        _delegate.setPackageAssertionStatus(s, b);
    }

    @Override
    public void setClassAssertionStatus(String s, boolean b)
    {
        _delegate.setClassAssertionStatus(s, b);
    }

    @Override
    public void clearAssertionStatus()
    {
        _delegate.clearAssertionStatus();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



extscript-core-root/extscript-weld/src/main/java/org/apache/myfaces/extension/scripting/weld/core/CDIThrowAwayClassloader.java [97:144]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            return Collections.enumeration(tmpList);
        }
        return urls;
    }

    public static URL getSystemResource(String s)
    {
        return ClassLoader.getSystemResource(s);
    }

    public static Enumeration<URL> getSystemResources(String s) throws IOException
    {
        return ClassLoader.getSystemResources(s);
    }

    public static InputStream getSystemResourceAsStream(String s)
    {
        return ClassLoader.getSystemResourceAsStream(s);
    }

    public static ClassLoader getSystemClassLoader()
    {
        return ClassLoader.getSystemClassLoader();
    }


    @Override
    public void setDefaultAssertionStatus(boolean b)
    {
        _delegate.setDefaultAssertionStatus(b);
    }

    @Override
    public void setPackageAssertionStatus(String s, boolean b)
    {
        _delegate.setPackageAssertionStatus(s, b);
    }

    @Override
    public void setClassAssertionStatus(String s, boolean b)
    {
        _delegate.setClassAssertionStatus(s, b);
    }

    @Override
    public void clearAssertionStatus()
    {
        _delegate.clearAssertionStatus();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



