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 6ca52f4 commit 39f6586Copy full SHA for 39f6586
src/com/magento/idea/magento2plugin/util/CamelCaseToHyphen.java
@@ -4,16 +4,10 @@
4
*/
5
package com.magento.idea.magento2plugin.util;
6
7
-import java.lang.*;
8
-import java.util.regex.Matcher;
9
-import java.util.regex.Pattern;
10
-
11
public class CamelCaseToHyphen {
12
private static CamelCaseToHyphen INSTANCE = null;
13
public static CamelCaseToHyphen getInstance() {
14
- if (null == INSTANCE) {
15
- INSTANCE = new CamelCaseToHyphen();
16
- }
+ if (null == INSTANCE) INSTANCE = new CamelCaseToHyphen();
17
return INSTANCE;
18
}
19
0 commit comments