RMC defect 45419
diff --git a/1.5/plugins/org.eclipse.epf.richtext/src/org/eclipse/epf/richtext/actions/PastePlainTextAction.java b/1.5/plugins/org.eclipse.epf.richtext/src/org/eclipse/epf/richtext/actions/PastePlainTextAction.java
index 7bba3d7..f35cbb8 100644
--- a/1.5/plugins/org.eclipse.epf.richtext/src/org/eclipse/epf/richtext/actions/PastePlainTextAction.java
+++ b/1.5/plugins/org.eclipse.epf.richtext/src/org/eclipse/epf/richtext/actions/PastePlainTextAction.java
@@ -10,7 +10,6 @@
  *******************************************************************************/
 package org.eclipse.epf.richtext.actions;
 
-import org.eclipse.epf.common.utils.StrUtil;
 import org.eclipse.epf.richtext.IRichText;
 import org.eclipse.epf.richtext.RichTextCommand;
 import org.eclipse.epf.richtext.RichTextEditor;
@@ -22,7 +21,6 @@
 import org.eclipse.swt.widgets.Display;
 
 public class PastePlainTextAction extends RichTextAction {
-	
 	/**
 	 * Creates a new instance.
 	 */
@@ -49,7 +47,7 @@
 			String text = (String) clipboard.getContents(TextTransfer
 					.getInstance());
 			if (text != null && text.length() > 0) {
-				text = StrUtil.convertNewlinesToHTML(text);
+				//text = StrUtil.convertNewlinesToHTML(text);
 				if (richText instanceof RichTextEditor) {
 					((RichTextEditor)richText).addHTML(text);
 				} else {