larryi 02/02/04 17:32:05 Modified: src/share/org/apache/tomcat/util IntrospectionUtils.java Log: Update to add the "classes" directory before the jars. Revision Changes Path 1.17 +2 -2 jakarta-tomcat/src/share/org/apache/tomcat/util/IntrospectionUtils.java Index: IntrospectionUtils.java =================================================================== RCS file: /home/cvs/jakarta-tomcat/src/share/org/apache/tomcat/util/IntrospectionUtils.java,v retrieving revision 1.16 retrieving revision 1.17 diff -u -r1.16 -r1.17 --- IntrospectionUtils.java 23 Jan 2002 23:26:04 -0000 1.16 +++ IntrospectionUtils.java 5 Feb 2002 01:32:05 -0000 1.17 @@ -586,11 +586,11 @@ { Vector jarsV = new Vector(); if( dir!=null ) { - addToClassPath( jarsV, dir ); - // Add dir/classes, if it exists + // Add dir/classes first, if it exists URL url=getURL( dir, "classes"); if( url!=null ) jarsV.addElement(url); + addToClassPath( jarsV, dir ); } if( cpath != null )
-- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>