We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4c39f8 commit 49bf302Copy full SHA for 49bf302
src/com/magento/idea/magento2plugin/actions/generation/dialog/NewModuleDialog.java
@@ -264,9 +264,9 @@ public String getModuleName() {
264
* @return String
265
*/
266
private String removeSubstringFormString(
267
- @NotNull String target, @NotNull String replacement
+ final @NotNull String target, final @NotNull String replacement
268
) {
269
- String moduleRegex = "(?i)" + target;
+ final String moduleRegex = "(?i)" + target;
270
return replacement.replaceAll(moduleRegex, "");
271
}
272
0 commit comments