curcuru     2002/06/13 11:08:32

  Modified:    java/src/org/apache/xalan/xslt EnvironmentCheck.java
  Log:
  Fix Bugzilla #9137; don't toLowerCase() the filename (not really needed 
anymore);
  remove line for xalan.jar for 2_4_D1 because .jar build size is not 
determinate
  
  Revision  Changes    Path
  1.12      +5 -5      
xml-xalan/java/src/org/apache/xalan/xslt/EnvironmentCheck.java
  
  Index: EnvironmentCheck.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xalan/java/src/org/apache/xalan/xslt/EnvironmentCheck.java,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- EnvironmentCheck.java     13 Jun 2002 16:06:33 -0000      1.11
  +++ EnvironmentCheck.java     13 Jun 2002 18:08:31 -0000      1.12
  @@ -708,7 +708,7 @@
       {
   
         // Look at each classpath entry for each of our requested jarNames
  -      String filename = st.nextToken().toLowerCase();
  +      String filename = st.nextToken();
   
         for (int i = 0; i < jars.length; i++)
         {
  @@ -1265,7 +1265,7 @@
       jarVersions.put(new Long(923866), "xalan.jar from xalan-j_2_2_0");
       jarVersions.put(new Long(905872), "xalan.jar from xalan-j_2_3_D1");
       jarVersions.put(new Long(906122), "xalan.jar from xalan-j_2_3_0");
  -    jarVersions.put(new Long(983402), "xalan.jar from xalan-j_2_4_D1");
  +    // Impossible to get exact number, so don't use this: 
jarVersions.put(new Long(), "xalan.jar from xalan-j_2_4_D1");
   
       jarVersions.put(new Long(857171), "xalan.jar from lotusxsl-j_1_0_1");
       jarVersions.put(new Long(802165), "xalan.jar from lotusxsl-j_2_0_0");
  
  
  

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

Reply via email to