File tree 2 files changed +7
-3
lines changed
operator-gen-maven-plugin/src/main/java/org/acme
2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -45,8 +45,12 @@ public Config getConfig() {
45
45
}
46
46
47
47
public List <String > getIgnoreProps () {
48
- String ignoreProps = crdCustomizations .get ("ignoreProps" ).toString ();
49
- return Arrays .asList (ignoreProps .split ("," ));
48
+ if (crdCustomizations .get ("ignoreProps" ) != null ) {
49
+ String ignoreProps = crdCustomizations .get ("ignoreProps" ).toString ();
50
+ return Arrays .asList (ignoreProps .split ("," ));
51
+ } else {
52
+ return Collections .emptyList ();
53
+ }
50
54
}
51
55
52
56
}
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ public class OperatorGenMojo
61
61
private List <String > pathParamMappings = null ;
62
62
63
63
@ Parameter (property = "crdCustomizations" , required = false )
64
- private Properties crdCustomizations = null ;
64
+ private Properties crdCustomizations = new Properties () ;
65
65
66
66
/**
67
67
* Location of the generated source code.
You can’t perform that action at this time.
0 commit comments