The implementation of Locator.fromUri() (the facade for Java13+Java14
conversion) was introduced with [1].
But why the 1.4 implementation is commented out?

    public static String fromURI(String uri) {
        // #buzilla8031: first try Java 1.4.
        String result = null;
        //result = fromUriJava14(uri);
        if (result == null) {
            result = fromURIJava13(uri);
        }
        return result;
    }


Jan


[1]
http://svn.apache.org/viewvc/ant/core/trunk/src/main/org/apache/tools/an
t/launch/Locator.java?r1=533082&r2=539002&diff_format=h

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to