File tree Expand file tree Collapse file tree 1 file changed +27
-0
lines changed
runner-feedback-core/src/main/java/com/github/izerui Expand file tree Collapse file tree 1 file changed +27
-0
lines changed Original file line number Diff line number Diff 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 * 自定义规则
You can’t perform that action at this time.
0 commit comments