41424344454647484950
if (dir == null) { throw new BuildException("dir is null"); } try { new PatchDefinition(work(), new VBox(context(), dir.toURI()), patches).call(); } catch (Exception e) { throw new BuildException(e); } }
26272829303132
*/ private List<Patch> patches = Collections.emptyList(); @Override protected void execute(VBox box) throws Exception { new PatchDefinition(getWork(), box, patches).call(); }