diff --git a/docs/index.html b/docs/index.html index 8198ec405..c0d962204 100644 --- a/docs/index.html +++ b/docs/index.html @@ -189,11 +189,14 @@ Comprehensive documentation is included in the source and binary distributions.
Modules available for access are (click the links to view the diff --git a/src/main/org/apache/tools/ant/AntClassLoader.java b/src/main/org/apache/tools/ant/AntClassLoader.java index e38682896..b661cba35 100644 --- a/src/main/org/apache/tools/ant/AntClassLoader.java +++ b/src/main/org/apache/tools/ant/AntClassLoader.java @@ -1061,13 +1061,12 @@ public class AntClassLoader extends ClassLoader implements BuildListener { try { stream = getResourceStream(pathComponent, classFilename); if (stream != null) { - // System.out.println("Found " + classFilename + " in " + pathComponent ); return getClassFromStream(stream, name); } } catch (SecurityException se) { throw se; } catch (IOException ioe) { - ioe.printStackTrace(); + // ioe.printStackTrace(); log("Exception reading component " + pathComponent , Project.MSG_VERBOSE); } diff --git a/xdocs/index.xml b/xdocs/index.xml index d13469831..9548fdf40 100644 --- a/xdocs/index.xml +++ b/xdocs/index.xml @@ -83,11 +83,14 @@ Comprehensive documentation is included in the source and binary distributions.