Commit 621b33f7 authored by Stephane Nicoll's avatar Stephane Nicoll

Missing setter on spring.batch.job.names property

Relates to gh-1249
parent 8f886e22
...@@ -73,5 +73,9 @@ public class BatchProperties { ...@@ -73,5 +73,9 @@ public class BatchProperties {
public String getNames() { public String getNames() {
return names; return names;
} }
public void setNames(String names) {
this.names = names;
}
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment