Skip to content

Commit df9e5d0

Browse files
committed
1.1.1
1 parent 515f7fe commit df9e5d0

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

runner-feedback-core/src/main/java/com/github/izerui/AgentProperties.java

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,33 @@ public class AgentProperties {
5454
*/
5555
private Customizer[] customizers;
5656

57+
public String[] getPackages() {
58+
if (packages == null) {
59+
packages = new String[0];
60+
}
61+
return packages;
62+
}
63+
64+
public String[] getIgnorePackages() {
65+
if (ignorePackages == null) {
66+
ignorePackages = new String[0];
67+
}
68+
return ignorePackages;
69+
}
70+
71+
public String[] getIgnoreAnnotations() {
72+
if (ignoreAnnotations == null) {
73+
ignoreAnnotations = new String[0];
74+
}
75+
return ignoreAnnotations;
76+
}
77+
78+
public Customizer[] getCustomizers() {
79+
if (customizers == null) {
80+
customizers = new Customizer[0];
81+
}
82+
return customizers;
83+
}
5784

5885
/**
5986
* 自定义规则

0 commit comments

Comments
 (0)