https://bz.apache.org/bugzilla/show_bug.cgi?id=57129

--- Comment #47 from Y. Savanier <yannick.savan...@gmail.com> ---
Nice try but no, I've always run my webapps on linux machines and the Tomcat
handling of jars at loading was always alphabeticaly ordered as far as I can
remember which is what I'm talking about here (if you read my previous message
correctly, I'm well aware that the handling on others webservers like Websphere
or JBoss is unordered and fs dependent).

For example this is the source code for the tomcat 4.0 FileDirContext list
method in 2001 :

    protected Vector list(File file) {

        Vector entries = new Vector();
        if (!file.isDirectory())
            return entries;
        String[] names = file.list();
        Arrays.sort(names);             // Sort alphabetically
....

So yeah, from early 2000 to 2014 appears like more than 10 years to me.

Cheers.

-- 
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to