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/io/CharBackedInputStream.java')
-rw-r--r--plugins/org.eclipse.osee.framework.jdk.core/src/org/eclipse/osee/framework/jdk/core/util/io/CharBackedInputStream.java5
1 files changed, 4 insertions, 1 deletions
diff --git a/plugins/org.eclipse.osee.framework.jdk.core/src/org/eclipse/osee/framework/jdk/core/util/io/CharBackedInputStream.java b/plugins/org.eclipse.osee.framework.jdk.core/src/org/eclipse/osee/framework/jdk/core/util/io/CharBackedInputStream.java
index 0ffa313bfda..719aea03010 100644
--- a/plugins/org.eclipse.osee.framework.jdk.core/src/org/eclipse/osee/framework/jdk/core/util/io/CharBackedInputStream.java
+++ b/plugins/org.eclipse.osee.framework.jdk.core/src/org/eclipse/osee/framework/jdk/core/util/io/CharBackedInputStream.java
@@ -149,19 +149,22 @@ public class CharBackedInputStream extends InputStream implements Appendable {
return writer;
}
+ @Override
public Appendable append(CharSequence csq) throws IOException {
addBackingSource(csq);
return this;
}
+ @Override
public Appendable append(CharSequence csq, int start, int end) throws IOException {
addBackingSource(csq, start, end - start);
return this;
}
+ @Override
public Appendable append(char c) throws IOException {
throw new UnsupportedOperationException(
- "doing this one character at a time would be so inefficient it would defeat the whole purpose of this class");
+ "doing this one character at a time would be so inefficient it would defeat the whole purpose of this class");
}
@Override

Back to the top