You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by an...@apache.org on 2010/03/03 04:45:47 UTC

svn commit: r918317 - /ant/core/trunk/src/tests/antunit/core/classloader-test.xml

Author: antoine
Date: Wed Mar  3 03:45:47 2010
New Revision: 918317

URL: http://svn.apache.org/viewvc?rev=918317&view=rev
Log:
typo

Modified:
    ant/core/trunk/src/tests/antunit/core/classloader-test.xml

Modified: ant/core/trunk/src/tests/antunit/core/classloader-test.xml
URL: http://svn.apache.org/viewvc/ant/core/trunk/src/tests/antunit/core/classloader-test.xml?rev=918317&r1=918316&r2=918317&view=diff
==============================================================================
--- ant/core/trunk/src/tests/antunit/core/classloader-test.xml (original)
+++ ant/core/trunk/src/tests/antunit/core/classloader-test.xml Wed Mar  3 03:45:47 2010
@@ -35,7 +35,7 @@
 public class A {
     public static void main(String[] args) {
         if (A.class.getClassLoader().getResource("org/apache/xerces/jaxp/DocumentBuilderFactoryImpl.class") != null) {
-            throw new RuntimeException("Didn't expect to find DocumenBuilderImpl");
+            throw new RuntimeException("Didn't expect to find DocumentBuilderImpl");
         }
     }
 }
@@ -54,7 +54,7 @@
     public static void main(String[] args) {
         try {
             A.class.getClassLoader().loadClass("org.apache.xerces.jaxp.DocumentBuilderFactoryImpl");
-            throw new RuntimeException("Didn't expect to find DocumenBuilderImpl");
+            throw new RuntimeException("Didn't expect to find DocumentBuilderImpl");
         } catch (ClassNotFoundException cnfe) {
         }
     }
@@ -74,7 +74,7 @@
 public class A {
     public static void main(String[] args) {
         if (A.class.getClassLoader().getResourceAsStream("org/apache/xerces/jaxp/DocumentBuilderFactoryImpl.class") != null) {
-            throw new RuntimeException("Didn't expect to find DocumenBuilderImpl");
+            throw new RuntimeException("Didn't expect to find DocumentBuilderImpl");
         }
     }
 }