Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.framework.jdk.core/src/org/eclipse/osee/framework/jdk/core/util/Readers.java')
-rw-r--r--plugins/org.eclipse.osee.framework.jdk.core/src/org/eclipse/osee/framework/jdk/core/util/Readers.java3
1 files changed, 0 insertions, 3 deletions
diff --git a/plugins/org.eclipse.osee.framework.jdk.core/src/org/eclipse/osee/framework/jdk/core/util/Readers.java b/plugins/org.eclipse.osee.framework.jdk.core/src/org/eclipse/osee/framework/jdk/core/util/Readers.java
index bdc77338073..6f9987c918e 100644
--- a/plugins/org.eclipse.osee.framework.jdk.core/src/org/eclipse/osee/framework/jdk/core/util/Readers.java
+++ b/plugins/org.eclipse.osee.framework.jdk.core/src/org/eclipse/osee/framework/jdk/core/util/Readers.java
@@ -29,7 +29,6 @@ public final class Readers {
* @throws IllegalArgumentException If reader is null
* @throws IllegalArgumentException If elementName is null
* @throws IllegalStateException If the balanced closing tag is not found before the reader is emptied
- * @throws IOException
*/
public static final void xmlForward(Reader reader, Appendable appendable, CharSequence elementName) throws IOException {
if (reader == null) {
@@ -87,7 +86,6 @@ public final class Readers {
* Forward a reader to just after the specified CharSequence.
*
* @return The sequence that was found which stopped the forwarding. A null is returned if no sequence was found
- * @throws IOException
* @throws IllegalArgumentException if any parameter is null
* @throws IllegalArgumentException if any of the sequences elements are length zero
*/
@@ -100,7 +98,6 @@ public final class Readers {
* consumed from the reader will be appended to the appendable.
*
* @return The sequence that was found which stopped the forwarding. A null is returned if no sequence was found
- * @throws IOException
* @throws IllegalArgumentException if reader is null
* @throws IllegalArgumentException if sequences is null
* @throws IllegalArgumentException if any of the sequences elements are length zero

Back to the top