1 | String[] inputTargets = null;↵ | | 1 | String[] outputTargets = null;↵
|
2 | try {↵ | | 2 | try {↵
|
3 | inputTargets =↵ | | 3 | outputTargets =↵
|
4 | inputMapper.getImplementation().mapFileName(sourcefile);↵ | | 4 | outputMapper.getImplementation().mapFileName(sourcefile);↵
|
5 | } catch (NullPointerException enPeaEx) {↵ | | 5 | } catch (NullPointerException enPeaEx) {↵
|
6 | if (sourcefile != null) {↵ | | 6 | if (sourcefile != null) {↵
|
7 | throw enPeaEx;↵ | | 7 | throw enPeaEx;↵
|
8 | }↵ | | 8 | }↵
|
9 | }↵ | | 9 | }↵
|
10 | if (inputTargets != null && inputTargets.length > 0) {↵ | | 10 | if (outputTargets != null && outputTargets.length > 0) {↵
|
11 | redirector.setInput(toFileArray(inputTargets));↵ | | 11 | redirector.setOutput(toFileArray(outputTargets));↵
|
12 | } | | 12 | }
|