@@ -60,10 +60,10 @@ public String getPresentation() {
60
60
/**
61
61
* Loads a {@link String} from the {@link #BUNDLE} {@link ResourceBundle}.
62
62
*
63
- * @param key the key of the resource
64
- * @param params the optional parameters for the specific resource
63
+ * @param key The key of the resource
64
+ * @param params The optional parameters for the specific resource
65
65
*
66
- * @return the {@link String} value or {@code null} if no resource found for the key
66
+ * @return {@link String} or {@code null}
67
67
*/
68
68
public static String message (@ PropertyKey (resourceBundle = BUNDLE_NAME ) String key , Object ... params ) {
69
69
return CommonBundle .message (BUNDLE , key , params );
@@ -72,11 +72,11 @@ public static String message(@PropertyKey(resourceBundle = BUNDLE_NAME) String k
72
72
/**
73
73
* Loads a {@link String} from the {@link #BUNDLE} {@link ResourceBundle}.
74
74
*
75
- * @param key the key of the resource
76
- * @param defaultValue the default value that will be returned if there is nothing set
77
- * @param params the optional parameters for the specific resource
75
+ * @param key The key of the resource
76
+ * @param defaultValue The default value that will be returned if there is nothing set
77
+ * @param params The optional parameters for the specific resource
78
78
*
79
- * @return the {@link String} value or {@code null} if no resource found for the key
79
+ * @return the {@link String} value or {@code null}
80
80
*/
81
81
public static String messageOrDefault (
82
82
@ PropertyKey (resourceBundle = BUNDLE_NAME ) String key ,
0 commit comments