Skip to content

Commit 39f6586

Browse files
committed
[#263]_refactor code style
1 parent 6ca52f4 commit 39f6586

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

src/com/magento/idea/magento2plugin/util/CamelCaseToHyphen.java

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,10 @@
44
*/
55
package com.magento.idea.magento2plugin.util;
66

7-
import java.lang.*;
8-
import java.util.regex.Matcher;
9-
import java.util.regex.Pattern;
10-
117
public class CamelCaseToHyphen {
128
private static CamelCaseToHyphen INSTANCE = null;
139
public static CamelCaseToHyphen getInstance() {
14-
if (null == INSTANCE) {
15-
INSTANCE = new CamelCaseToHyphen();
16-
}
10+
if (null == INSTANCE) INSTANCE = new CamelCaseToHyphen();
1711
return INSTANCE;
1812
}
1913

0 commit comments

Comments
 (0)