Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Keller2016-10-21 09:23:23 +0000
committerMarkus Keller2016-10-21 09:23:23 +0000
commit988a5985da58150e36a67b09d470f674457bd4be (patch)
tree8b0c04b176575a559de7166e7869feeaa1f23d27
parent869e6e8f1c7d9b0be6ca0d8f3bd22573913848b0 (diff)
downloadeclipse.platform.text-988a5985da58150e36a67b09d470f674457bd4be.tar.gz
eclipse.platform.text-988a5985da58150e36a67b09d470f674457bd4be.tar.xz
eclipse.platform.text-988a5985da58150e36a67b09d470f674457bd4be.zip
fixed unclosed <em>Y20161021-1200Y20161021-0600
-rw-r--r--org.eclipse.jface.text/src/org/eclipse/jface/text/source/SourceViewer.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.jface.text/src/org/eclipse/jface/text/source/SourceViewer.java b/org.eclipse.jface.text/src/org/eclipse/jface/text/source/SourceViewer.java
index cab98611df1..959293a59e1 100644
--- a/org.eclipse.jface.text/src/org/eclipse/jface/text/source/SourceViewer.java
+++ b/org.eclipse.jface.text/src/org/eclipse/jface/text/source/SourceViewer.java
@@ -365,7 +365,7 @@ public class SourceViewer extends TextViewer implements ISourceViewer, ISourceVi
* @param parent the parent of the viewer's control
* @param ruler the vertical ruler used by this source viewer
* @param styles the SWT style bits for the viewer's control,
- * <em>if <code>SWT.WRAP</code> is set then a custom document adapter needs to be provided, see {@link #createDocumentAdapter()}
+ * <em>if <code>SWT.WRAP</code> is set then a custom document adapter needs to be provided, see {@link #createDocumentAdapter()}</em>
*/
public SourceViewer(Composite parent, IVerticalRuler ruler, int styles) {
this(parent, ruler, null, false, styles);
@@ -381,7 +381,7 @@ public class SourceViewer extends TextViewer implements ISourceViewer, ISourceVi
* @param overviewRuler the overview ruler
* @param showAnnotationsOverview <code>true</code> if the overview ruler should be visible, <code>false</code> otherwise
* @param styles the SWT style bits for the viewer's control,
- * <em>if <code>SWT.WRAP</code> is set then a custom document adapter needs to be provided, see {@link #createDocumentAdapter()}
+ * <em>if <code>SWT.WRAP</code> is set then a custom document adapter needs to be provided, see {@link #createDocumentAdapter()}</em>
* @since 2.1
*/
public SourceViewer(Composite parent, IVerticalRuler verticalRuler, IOverviewRuler overviewRuler, boolean showAnnotationsOverview, int styles) {

Back to the top