[Bug-11071] Fix task local params NPE (#11166)
* fix local param NPE * delete empty files
This commit is contained in:
parent
acc2fba6cd
commit
cec5e88319
|
|
@ -93,7 +93,7 @@ public abstract class AbstractParameters implements IParameters {
|
|||
if (localParams != null) {
|
||||
|
||||
for (Property property : localParams) {
|
||||
if (property.getDirect().equals(Direct.IN)) {
|
||||
if (property.getDirect() == null || property.getDirect().equals(Direct.IN)) {
|
||||
localParametersMaps.put(property.getProp(), property);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue