Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrelves2006-12-14 21:14:34 +0000
committerrelves2006-12-14 21:14:34 +0000
commitc3ac8f74bee5b61695945b45ed3ced0ef98b007d (patch)
tree566bbccf4ae1a665bf5c5a2cfbf928de5ac830d4 /org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal
parent3ad7521837542be183fe776644511d24b9856cfe (diff)
downloadorg.eclipse.mylyn.tasks-c3ac8f74bee5b61695945b45ed3ced0ef98b007d.tar.gz
org.eclipse.mylyn.tasks-c3ac8f74bee5b61695945b45ed3ced0ef98b007d.tar.xz
org.eclipse.mylyn.tasks-c3ac8f74bee5b61695945b45ed3ced0ef98b007d.zip
ASSIGNED - bug 161488: Bugzilla - Invalid XML
https://bugs.eclipse.org/bugs/show_bug.cgi?id=161488
Diffstat (limited to 'org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal')
-rw-r--r--org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/AbstractReportFactory.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/AbstractReportFactory.java b/org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/AbstractReportFactory.java
index 1fe4f3e02..973363278 100644
--- a/org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/AbstractReportFactory.java
+++ b/org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/AbstractReportFactory.java
@@ -123,6 +123,7 @@ public class AbstractReportFactory {
}
}
+ // Copy and remove control characters other than \n and \r
private void copyAndCleanByteStream(InputStream in, OutputStream out) throws IOException {
if (in != null && out != null) {

Back to the top