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) {