Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrelves2008-06-17 01:51:44 +0000
committerrelves2008-06-17 01:51:44 +0000
commit61d55857f90f8c9af4ae42d8b121ab0b4488f8ca (patch)
tree355d9d821270699138f4a7647a7596c29f5c5682 /org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/SaxMultiBugReportContentHandler.java
parent81f725a9c45f34195b08cfd5bdb0033ed762185d (diff)
downloadorg.eclipse.mylyn.tasks-61d55857f90f8c9af4ae42d8b121ab0b4488f8ca.tar.gz
org.eclipse.mylyn.tasks-61d55857f90f8c9af4ae42d8b121ab0b4488f8ca.tar.xz
org.eclipse.mylyn.tasks-61d55857f90f8c9af4ae42d8b121ab0b4488f8ca.zip
REOPENED - bug 235462: [editor] eliminate extraneous new lines after comments
https://bugs.eclipse.org/bugs/show_bug.cgi?id=235462
Diffstat (limited to 'org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/SaxMultiBugReportContentHandler.java')
-rw-r--r--org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/SaxMultiBugReportContentHandler.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/SaxMultiBugReportContentHandler.java b/org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/SaxMultiBugReportContentHandler.java
index 0a8dccf1a..a2c3ae0c9 100644
--- a/org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/SaxMultiBugReportContentHandler.java
+++ b/org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/SaxMultiBugReportContentHandler.java
@@ -428,7 +428,7 @@ public class SaxMultiBugReportContentHandler extends DefaultHandler {
attrTimestamp.setValue(comment.createdTimeStamp);
taskComment.setCreationDate(repositoryTaskData.getAttributeMapper().getDateValue(attrTimestamp));
if (comment.commentText != null) {
- String commentText = comment.commentText.trim() + "\n";
+ String commentText = comment.commentText.trim();
taskComment.setText(commentText);
}

Back to the top