File tree Expand file tree Collapse file tree 4 files changed +7
-6
lines changed
src/com/behsazan/model/settings Expand file tree Collapse file tree 4 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 5
5
<content url =" file://$MODULE_DIR$" >
6
6
<sourceFolder url =" file://$MODULE_DIR$/src" isTestSource =" false" />
7
7
</content >
8
- <orderEntry type =" jdk " jdkName = " 1.8 " jdkType = " JavaSDK " />
8
+ <orderEntry type =" inheritedJdk " />
9
9
<orderEntry type =" sourceFolder" forTests =" false" />
10
10
<orderEntry type =" library" name =" sqlite-jdbc-3.19.3" level =" project" />
11
11
<orderEntry type =" library" name =" commons-lang3-3.6" level =" project" />
Original file line number Diff line number Diff line change
1
+ [1217/164250.849:ERROR:registration_protocol_win.cc(84)] TransactNamedPipe: The pipe has been ended. (0x6D)
Original file line number Diff line number Diff line change @@ -31,14 +31,14 @@ public class Settings {
31
31
private static final String SHOW_TAB_SCRIPT = "1" ;
32
32
public static final String SECTION_CHAR = "\u00A7 " ;
33
33
34
- public static final String TYPE_PATTERN = "\u00A7 " + "(\\ w +)@(\\ w+)" + "\u00A7 " ;
34
+ public static final String TYPE_PATTERN = "\u00A7 " + "([A-Za-z0-9 \\ - \\ _] +)@(\\ w+)" + "\u00A7 " ;
35
35
36
36
public static final String LOCAL_IDENTIFIER = "\u00A7 " + "var@locals" + "\u00A7 " ;
37
- public static final String LOCAL_PATTERN = "\u00A7 " + "(\\ w +)@locals" + "\u00A7 " ;
37
+ public static final String LOCAL_PATTERN = "\u00A7 " + "([A-Za-z0-9 \\ - \\ _] +)@locals" + "\u00A7 " ;
38
38
public static final String GLOBAL_IDENTIFIER = "\u00A7 " + "var@globals" + "\u00A7 " ;
39
- public static final String GLOBAL_PATTERN = "\u00A7 " + "(\\ w +)@globals" + "\u00A7 " ;
39
+ public static final String GLOBAL_PATTERN = "\u00A7 " + "([A-Za-z0-9 \\ - \\ _] +)@globals" + "\u00A7 " ;
40
40
public static final String PARAM_IDENTIFIER = "\u00A7 " + "var@params" + "\u00A7 " ;
41
- public static final String PARAM_PATTERN = "\u00A7 " + "(\\ w +)@params" + "\u00A7 " ;
41
+ public static final String PARAM_PATTERN = "\u00A7 " + "([A-Za-z0-9 \\ - \\ _] +)@params" + "\u00A7 " ;
42
42
private static final String [] BASE_URLS = new String []{
43
43
"http://localhost:8000/app4qa/" ,
44
44
"http://localhost:8001/app4dev/"
You can’t perform that action at this time.
0 commit comments