Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrelves2008-09-09 20:13:40 +0000
committerrelves2008-09-09 20:13:40 +0000
commit3983cf2e7cb769619d03de973bf537cc53e6e554 (patch)
treea833e05a225f71fa9f2beaeb87b4f5f63e60f076 /org.eclipse.mylyn.bugzilla.ui
parentb421a075d10f054487e8f02380e500ccf776091d (diff)
downloadorg.eclipse.mylyn.tasks-3983cf2e7cb769619d03de973bf537cc53e6e554.tar.gz
org.eclipse.mylyn.tasks-3983cf2e7cb769619d03de973bf537cc53e6e554.tar.xz
org.eclipse.mylyn.tasks-3983cf2e7cb769619d03de973bf537cc53e6e554.zip
ASSIGNED - bug 197539: [patch] comments in bugzilla 2.18 don't wrap
https://bugs.eclipse.org/bugs/show_bug.cgi?id=197539
Diffstat (limited to 'org.eclipse.mylyn.bugzilla.ui')
-rw-r--r--org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/BugzillaUiPlugin.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/BugzillaUiPlugin.java b/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/BugzillaUiPlugin.java
index 97c4cc721..3908c10b3 100644
--- a/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/BugzillaUiPlugin.java
+++ b/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/BugzillaUiPlugin.java
@@ -13,6 +13,7 @@ import java.util.List;
import org.eclipse.core.runtime.IPath;
import org.eclipse.core.runtime.Platform;
import org.eclipse.jface.resource.ImageDescriptor;
+import org.eclipse.mylyn.internal.bugzilla.core.BugzillaClient;
import org.eclipse.mylyn.internal.bugzilla.core.BugzillaCorePlugin;
import org.eclipse.mylyn.internal.bugzilla.core.BugzillaRepositoryConnector;
import org.eclipse.mylyn.internal.bugzilla.core.IBugzillaConstants;
@@ -192,7 +193,10 @@ public class BugzillaUiPlugin extends AbstractUIPlugin {
/**
* Break text up into lines so that it is displayed properly in bugzilla
+ *
+ * @deprecated use {@link BugzillaClient#formatTextToLineWrap(String, boolean)} instead
*/
+ @Deprecated
public static String formatTextToLineWrap(String origText, boolean hardWrap) {
// BugzillaServerVersion bugzillaServerVersion =
// IBugzillaConstants.BugzillaServerVersion.fromString(repository

Back to the top