Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2019-02-14 20:22:48 +0000
committerAlexander Kurtakov2019-02-14 20:22:48 +0000
commitc40e4685598064f2be87b659f2c60e094d63ca07 (patch)
treedb28a5b231b56a652228a4039b5926f2906ed5a2 /org.eclipse.ui.workbench.texteditor
parent4bc184194956ba7fae4255997954321fba048452 (diff)
downloadeclipse.platform.text-c40e4685598064f2be87b659f2c60e094d63ca07.tar.gz
eclipse.platform.text-c40e4685598064f2be87b659f2c60e094d63ca07.tar.xz
eclipse.platform.text-c40e4685598064f2be87b659f2c60e094d63ca07.zip
Bug 543933 - Build javadocs with Java 11
Fix warnings catched by java 11 javadoc. (take 2) Change-Id: Iccf5071777c27d00d2bd06d9301e175b4ce820dc Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
Diffstat (limited to 'org.eclipse.ui.workbench.texteditor')
-rw-r--r--org.eclipse.ui.workbench.texteditor/src/org/eclipse/ui/texteditor/TextSelectionNavigationLocation.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/org.eclipse.ui.workbench.texteditor/src/org/eclipse/ui/texteditor/TextSelectionNavigationLocation.java b/org.eclipse.ui.workbench.texteditor/src/org/eclipse/ui/texteditor/TextSelectionNavigationLocation.java
index c246301d3da..ec0cbc93764 100644
--- a/org.eclipse.ui.workbench.texteditor/src/org/eclipse/ui/texteditor/TextSelectionNavigationLocation.java
+++ b/org.eclipse.ui.workbench.texteditor/src/org/eclipse/ui/texteditor/TextSelectionNavigationLocation.java
@@ -213,8 +213,9 @@ public class TextSelectionNavigationLocation extends NavigationLocation {
/**
* Merges the given location into this one.
*
- * @param location the location to merge into this one
- * @return <code>true<code> if merging was successful
+ * @param location
+ * the location to merge into this one
+ * @return <code>true</code> if merging was successful
*/
@Override
public boolean mergeInto(INavigationLocation location) {

Back to the top