Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Vogel2018-09-06 12:44:15 +0000
committerLars Vogel2018-09-09 11:14:38 +0000
commitcdc4629eece278d017cd26377de5cfe4f5fb0f81 (patch)
tree3426636d8962271c8e8c438ec421e7deadbb0bd3
parentfa73507557b42dda4375c05ee5511e03c5355d32 (diff)
downloadeclipse.platform.text-cdc4629eece278d017cd26377de5cfe4f5fb0f81.tar.gz
eclipse.platform.text-cdc4629eece278d017cd26377de5cfe4f5fb0f81.tar.xz
eclipse.platform.text-cdc4629eece278d017cd26377de5cfe4f5fb0f81.zip
Adds full qualified name for the deprecation link in ContextTypeRegistryI20180912-0225I20180912-0210I20180911-1400I20180910-0310
Without that the link points to itself Change-Id: Id16f906f7d7d0d89d72ea366f1ba70f4da3358c9 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
-rw-r--r--org.eclipse.jface.text/src/org/eclipse/jface/text/templates/ContextTypeRegistry.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/org.eclipse.jface.text/src/org/eclipse/jface/text/templates/ContextTypeRegistry.java b/org.eclipse.jface.text/src/org/eclipse/jface/text/templates/ContextTypeRegistry.java
index f54d65d3fe2..f46bb0923d3 100644
--- a/org.eclipse.jface.text/src/org/eclipse/jface/text/templates/ContextTypeRegistry.java
+++ b/org.eclipse.jface.text/src/org/eclipse/jface/text/templates/ContextTypeRegistry.java
@@ -16,15 +16,15 @@ package org.eclipse.jface.text.templates;
import java.util.Iterator;
/**
- * A registry for context types. Editor implementors will usually instantiate a
- * registry and configure the context types available in their editor.
+ * A registry for context types. Editor implementors will usually instantiate a registry and
+ * configure the context types available in their editor.
* <p>
* In order to pick up templates contributed using the <code>org.eclipse.ui.editors.templates</code>
* extension point, use a <code>ContributionContextTypeRegistry</code>.
* </p>
*
* @since 3.0
- * @deprecated See {@link ContextTypeRegistry} from org.eclipse.text
+ * @deprecated See {@link org.eclipse.text.templates.ContextTypeRegistry}
*/
@Deprecated
public class ContextTypeRegistry extends org.eclipse.text.templates.ContextTypeRegistry {

Back to the top