Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Pazderski2019-11-22 20:29:07 +0000
committerAlexander Kurtakov2019-11-23 06:56:26 +0000
commit1e4711dcdb57d77c8d11e3deb94ddf0fefc3bf8b (patch)
tree656460b07c9580c8cb640a7a5b52614f1c1e7c7b /org.eclipse.help.ui
parent22f7a9940afebb90e0b9067722e647d5c1f64928 (diff)
downloadeclipse.platform.ua-1e4711dcdb57d77c8d11e3deb94ddf0fefc3bf8b.tar.gz
eclipse.platform.ua-1e4711dcdb57d77c8d11e3deb94ddf0fefc3bf8b.tar.xz
eclipse.platform.ua-1e4711dcdb57d77c8d11e3deb94ddf0fefc3bf8b.zip
Change-Id: I4fc959485fcb2ee5b20c4099c0f08532e66669da Signed-off-by: Paul Pazderski <paul-eclipse@ppazderski.de>
Diffstat (limited to 'org.eclipse.help.ui')
-rw-r--r--org.eclipse.help.ui/src/org/eclipse/help/ui/internal/preferences/ICTable.java2
-rw-r--r--org.eclipse.help.ui/src/org/eclipse/help/ui/internal/util/EscapeUtils.java8
2 files changed, 5 insertions, 5 deletions
diff --git a/org.eclipse.help.ui/src/org/eclipse/help/ui/internal/preferences/ICTable.java b/org.eclipse.help.ui/src/org/eclipse/help/ui/internal/preferences/ICTable.java
index 99c7f904f..c3a3d41c1 100644
--- a/org.eclipse.help.ui/src/org/eclipse/help/ui/internal/preferences/ICTable.java
+++ b/org.eclipse.help.ui/src/org/eclipse/help/ui/internal/preferences/ICTable.java
@@ -188,7 +188,7 @@ public class ICTable {
/**
- * @param rics the ordered remote InfoCenters
+ * @param ics the ordered remote InfoCenters
*/
public void update(List<IC> ics) {
viewer.getContentProvider().inputChanged(viewer, null, ics);
diff --git a/org.eclipse.help.ui/src/org/eclipse/help/ui/internal/util/EscapeUtils.java b/org.eclipse.help.ui/src/org/eclipse/help/ui/internal/util/EscapeUtils.java
index db84f9984..cf1ef0229 100644
--- a/org.eclipse.help.ui/src/org/eclipse/help/ui/internal/util/EscapeUtils.java
+++ b/org.eclipse.help.ui/src/org/eclipse/help/ui/internal/util/EscapeUtils.java
@@ -22,7 +22,7 @@ package org.eclipse.help.ui.internal.util;
public class EscapeUtils {
/**
- * Replace every occurrence of &, <, >, ', " by an escape character
+ * Replace every occurrence of {@code &, <, >, ', "} by an escape character
* Replace tabs with spaces
* @param value the original string, may not be null
* @return the escaped string
@@ -32,7 +32,7 @@ public class EscapeUtils {
}
/**
- * Replace every occurrence of &, <, >, ', " by an escape character
+ * Replace every occurrence of {@code &, <, >, ', "} by an escape character
* but allow <b> and </b> through
* Replace tabs with spaces
* @param value the original string, may not be null
@@ -47,8 +47,8 @@ public class EscapeUtils {
}
/**
- * Escape any ampersands used in a label
- **/
+ * Escape any ampersands used in a label
+ */
public static String escapeForLabel(String message) {
// Make the most common case - i.e. no ampersand the
// most efficient

Back to the top