You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by la...@apache.org on 2002/02/05 02:32:05 UTC

cvs commit: jakarta-tomcat/src/share/org/apache/tomcat/util IntrospectionUtils.java

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:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>