Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--org.eclipse.core.filebuffers/src/org/eclipse/core/internal/filebuffers/FileBuffersMessages.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/org.eclipse.core.filebuffers/src/org/eclipse/core/internal/filebuffers/FileBuffersMessages.java b/org.eclipse.core.filebuffers/src/org/eclipse/core/internal/filebuffers/FileBuffersMessages.java
index 3adae7d34b0..e3230fff257 100644
--- a/org.eclipse.core.filebuffers/src/org/eclipse/core/internal/filebuffers/FileBuffersMessages.java
+++ b/org.eclipse.core.filebuffers/src/org/eclipse/core/internal/filebuffers/FileBuffersMessages.java
@@ -33,7 +33,7 @@ class FileBuffersMessages {
/**
* Gets a string from the resource bundle.
*
- * @param key the string used to get the bundle value, must not be null
+ * @param key the string used to get the bundle value, must not be <code>null</code>
* @return the string from the resource bundle
*/
public static String getString(String key) {
@@ -47,7 +47,7 @@ class FileBuffersMessages {
/**
* Gets a string from the resource bundle and formats it with the given arguments.
*
- * @param key the string used to get the bundle value, must not be null
+ * @param key the string used to get the bundle value, must not be <code>null</code>
* @param args the arguments used to format the string
* @return the formatted string
*/
@@ -64,7 +64,7 @@ class FileBuffersMessages {
/**
* Gets a string from the resource bundle and formats it with the given argument.
*
- * @param key the string used to get the bundle value, must not be null
+ * @param key the string used to get the bundle value, must not be <code>null</code>
* @param arg the argument used to format the string
* @return the formatted string
*/

Back to the top