>        DependManager dependM;
>        protected Object pd;
>        static Jdk11Compat jdkCompat=Jdk11Compat.getJdkCompat();
>   @@ -238,8 +238,11 @@
>             int idx=fileN.indexOf( "!" );
>             if( idx>=0 )
>                 fileN=fileN.substring( 0, idx) ;
>   -         f=new File( fileN );
>   -         if( debug > 0 ) log( "Jar dep "  +f );
>   +         // Bojan Smojver <[EMAIL PROTECTED]>: remove jar:
>   +         if( fileN.startsWith( "jar:" ))
>   +             fileN=fileN.substring( 4 );

I think this should actually be "file:" and then the next line should
have '5', instead of '4'. Yes?

Bojan

Reply via email to