Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDani Megert2004-06-23 09:42:52 +0000
committerDani Megert2004-06-23 09:42:52 +0000
commit7453932111bb6d1fe31b4d88bb5c41d7d39f1334 (patch)
tree5f71309fbab7e197e33ea7bcbacd1e0b372bfc62
parent7e58b3693eb990db6135c0158ba887e47891eaa0 (diff)
downloadeclipse.platform.text-7453932111bb6d1fe31b4d88bb5c41d7d39f1334.tar.gz
eclipse.platform.text-7453932111bb6d1fe31b4d88bb5c41d7d39f1334.tar.xz
eclipse.platform.text-7453932111bb6d1fe31b4d88bb5c41d7d39f1334.zip
Javadoc updates
-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