Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Pazderski2019-05-18 21:39:58 +0000
committerPaul Pazderski2019-05-19 23:44:04 +0000
commit8bc461175ceded9ec872cff17d84fbce8fc4795d (patch)
tree341effbc5c46d3376180e05cefa509d7d4ec270b /org.eclipse.ui.workbench.texteditor/src/org/eclipse/ui/texteditor/IAbstractTextEditorHelpContextIds.java
parent9e7f66919496659795478f8cd80804da71498fff (diff)
downloadeclipse.platform.text-8bc461175ceded9ec872cff17d84fbce8fc4795d.tar.gz
eclipse.platform.text-8bc461175ceded9ec872cff17d84fbce8fc4795d.tar.xz
eclipse.platform.text-8bc461175ceded9ec872cff17d84fbce8fc4795d.zip
This change fixes space or mixed tab/space indentations in all Java files. This also includes two or three space indentations and even fix most stray single spaces in indentations. The change includes only whitespace formatting and no code changes. Change-Id: I3e7b6abb69a1894c402f9123417346a44fc0992a
Diffstat (limited to 'org.eclipse.ui.workbench.texteditor/src/org/eclipse/ui/texteditor/IAbstractTextEditorHelpContextIds.java')
-rw-r--r--org.eclipse.ui.workbench.texteditor/src/org/eclipse/ui/texteditor/IAbstractTextEditorHelpContextIds.java80
1 files changed, 40 insertions, 40 deletions
diff --git a/org.eclipse.ui.workbench.texteditor/src/org/eclipse/ui/texteditor/IAbstractTextEditorHelpContextIds.java b/org.eclipse.ui.workbench.texteditor/src/org/eclipse/ui/texteditor/IAbstractTextEditorHelpContextIds.java
index 3f1e2a36b67..22e039b4273 100644
--- a/org.eclipse.ui.workbench.texteditor/src/org/eclipse/ui/texteditor/IAbstractTextEditorHelpContextIds.java
+++ b/org.eclipse.ui.workbench.texteditor/src/org/eclipse/ui/texteditor/IAbstractTextEditorHelpContextIds.java
@@ -340,46 +340,46 @@ public interface IAbstractTextEditorHelpContextIds {
*/
String TOGGLE_INSERT_MODE_ACTION= PREFIX + "toggle_insert_mode" + ACTION_POSTFIX; //$NON-NLS-1$;;
- /**
- * Help context id for the word completion action.
- * Value: <code>"org.eclipse.ui.hippie_completion_action_context"</code>
- * @since 3.1
- */
- String HIPPIE_COMPLETION_ACTION= PREFIX + "hippie_completion" + ACTION_POSTFIX; //$NON-NLS-1$
-
- /**
- * Help context id for the content assist action.
- * Value: <code>"org.eclipse.ui.content_assist_action_context"</code>
- * @since 3.5
- */
- String CONTENT_ASSIST_ACTION= PREFIX + "content_assist" + ACTION_POSTFIX; //$NON-NLS-1$
-
- /**
- * Help context id for the content assist context information action.
- * Value: <code>"org.eclipse.ui.content_assist_context_information_action_context"</code>
- * @since 3.5
- */
- String CONTENT_ASSIST_CONTEXT_INFORMATION_ACTION= PREFIX + "content_assist_context_information" + ACTION_POSTFIX; //$NON-NLS-1$
-
- /**
- * Help context id for the quick assist action.
- * Value: <code>"org.eclipse.ui.quick_assist_action_context"</code>
- * @since 3.2
- */
- String QUICK_ASSIST_ACTION= PREFIX + "quick_assist" + ACTION_POSTFIX; //$NON-NLS-1$
-
- /**
- * Help context id for the recenter action.
- * Value: <code>"org.eclipse.ui.recenter_action_context"</code>
- * @since 3.3
- */
- String RECENTER_ACTION= PREFIX + "recenter" + ACTION_POSTFIX; //$NON-NLS-1$
-
- /**
- * Help context id for the show whitespace characters action.
- * Value: <code>"org.eclipse.ui.show_whitespace_characters_action_context"</code>
- * @since 3.3
- */
+ /**
+ * Help context id for the word completion action.
+ * Value: <code>"org.eclipse.ui.hippie_completion_action_context"</code>
+ * @since 3.1
+ */
+ String HIPPIE_COMPLETION_ACTION= PREFIX + "hippie_completion" + ACTION_POSTFIX; //$NON-NLS-1$
+
+ /**
+ * Help context id for the content assist action.
+ * Value: <code>"org.eclipse.ui.content_assist_action_context"</code>
+ * @since 3.5
+ */
+ String CONTENT_ASSIST_ACTION= PREFIX + "content_assist" + ACTION_POSTFIX; //$NON-NLS-1$
+
+ /**
+ * Help context id for the content assist context information action.
+ * Value: <code>"org.eclipse.ui.content_assist_context_information_action_context"</code>
+ * @since 3.5
+ */
+ String CONTENT_ASSIST_CONTEXT_INFORMATION_ACTION= PREFIX + "content_assist_context_information" + ACTION_POSTFIX; //$NON-NLS-1$
+
+ /**
+ * Help context id for the quick assist action.
+ * Value: <code>"org.eclipse.ui.quick_assist_action_context"</code>
+ * @since 3.2
+ */
+ String QUICK_ASSIST_ACTION= PREFIX + "quick_assist" + ACTION_POSTFIX; //$NON-NLS-1$
+
+ /**
+ * Help context id for the recenter action.
+ * Value: <code>"org.eclipse.ui.recenter_action_context"</code>
+ * @since 3.3
+ */
+ String RECENTER_ACTION= PREFIX + "recenter" + ACTION_POSTFIX; //$NON-NLS-1$
+
+ /**
+ * Help context id for the show whitespace characters action.
+ * Value: <code>"org.eclipse.ui.show_whitespace_characters_action_context"</code>
+ * @since 3.3
+ */
String SHOW_WHITESPACE_CHARACTERS_ACTION= PREFIX + "show_whitepsace_characters" + ACTION_POSTFIX; //$NON-NLS-1$
/**

Back to the top