Skip to content

Commit b17cc97

Browse files
committed
Minor adjustments
1 parent c5871b0 commit b17cc97

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/com/magento/idea/magento2plugin/resources/ValidatorBundle.java

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,10 @@ public String getPresentation() {
6060
/**
6161
* Loads a {@link String} from the {@link #BUNDLE} {@link ResourceBundle}.
6262
*
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
6565
*
66-
* @return the {@link String} value or {@code null} if no resource found for the key
66+
* @return {@link String} or {@code null}
6767
*/
6868
public static String message(@PropertyKey(resourceBundle = BUNDLE_NAME) String key, Object... params) {
6969
return CommonBundle.message(BUNDLE, key, params);
@@ -72,11 +72,11 @@ public static String message(@PropertyKey(resourceBundle = BUNDLE_NAME) String k
7272
/**
7373
* Loads a {@link String} from the {@link #BUNDLE} {@link ResourceBundle}.
7474
*
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
7878
*
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}
8080
*/
8181
public static String messageOrDefault(
8282
@PropertyKey(resourceBundle = BUNDLE_NAME) String key,

0 commit comments

Comments
 (0)