From d1dfe606501af53b30806115c6e396a9de083e7c Mon Sep 17 00:00:00 2001 From: Peter Donald Date: Tue, 23 Jul 2002 06:53:29 +0000 Subject: [PATCH] Remove javadoc for throws that no exist git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@273149 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/org/apache/tools/ant/helper/ProjectHelperImpl.java | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/main/org/apache/tools/ant/helper/ProjectHelperImpl.java b/src/main/org/apache/tools/ant/helper/ProjectHelperImpl.java index c0c693e4d..fbd8b2ac4 100644 --- a/src/main/org/apache/tools/ant/helper/ProjectHelperImpl.java +++ b/src/main/org/apache/tools/ant/helper/ProjectHelperImpl.java @@ -802,8 +802,6 @@ public class ProjectHelperImpl extends ProjectHelper { * Will not be null. * @param start The start element in the array. * @param count The number of characters to read from the array. - * - * @exception SAXParseException if the element doesn't support text */ public void characters(char[] buf, int start, int count) { wrapper.addText(buf, start, count); @@ -938,8 +936,6 @@ public class ProjectHelperImpl extends ProjectHelper { * Will not be null. * @param start The start element in the array. * @param count The number of characters to read from the array. - * - * @exception SAXParseException if the element doesn't support text */ public void characters(char[] buf, int start, int count) { childWrapper.addText(buf, start, count); @@ -1036,8 +1032,6 @@ public class ProjectHelperImpl extends ProjectHelper { * @param start The start element in the array. * @param count The number of characters to read from the array. * - * @exception SAXParseException if the element doesn't support text - * * @see ProjectHelper#addText(Project,Object,char[],int,int) */ public void characters(char[] buf, int start, int count) {