catch IAE from empty transformation builder
This commit is contained in:
parent
6eaa203f77
commit
82fbae146b
1 changed files with 7 additions and 1 deletions
|
@ -1056,7 +1056,13 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
|
||||||
+ // ADD FUTURE TRANSFORMS HERE (these transforms run after the defaults have been merged into the node)
|
+ // ADD FUTURE TRANSFORMS HERE (these transforms run after the defaults have been merged into the node)
|
||||||
+ DEFAULT_AWARE_TRANSFORMATIONS.forEach(transform -> transform.apply(builder, contextMap, defaultsNode));
|
+ DEFAULT_AWARE_TRANSFORMATIONS.forEach(transform -> transform.apply(builder, contextMap, defaultsNode));
|
||||||
+
|
+
|
||||||
+ builder.build().apply(worldNode);
|
+ ConfigurationTransformation transformation;
|
||||||
|
+ try {
|
||||||
|
+ transformation = builder.build(); // build throws IAE if no actions were provided (bad zml)
|
||||||
|
+ } catch (IllegalArgumentException ignored) {
|
||||||
|
+ return;
|
||||||
|
+ }
|
||||||
|
+ transformation.apply(worldNode);
|
||||||
+ }
|
+ }
|
||||||
+
|
+
|
||||||
+ @Override
|
+ @Override
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue