File tree Expand file tree Collapse file tree 3 files changed +10
-9
lines changed
src/main/java/usace/cc/plugin Expand file tree Collapse file tree 3 files changed +10
-9
lines changed Original file line number Diff line number Diff line change @@ -51,5 +51,5 @@ publishing {
5151 }
5252
5353 group ' mil.army.usace.hec'
54- version ' 0.0.48 '
54+ version ' 0.0.49 '
5555}
Original file line number Diff line number Diff line change 66
77public class Action {
88 private String name ;
9- private String description ;
10- private Map <String ,DataSource > parameters ;
9+ private String desc ;
10+ private Map <String ,DataSource > params ;
1111 @ JsonProperty
1212 public String getName (){
1313 return name ;
1414 }
1515 @ JsonProperty
1616 public String getDescription (){
17- return description ;
17+ return desc ;
1818 }
1919 @ JsonProperty
2020 public Map <String ,DataSource > getParameters (){
21- return parameters ;
21+ return params ;
2222 }
2323 public void UpdateActionPaths (){
2424 PluginManager pm = PluginManager .getInstance ();
2525 this .name = pm .SubstitutePath (this .name );
26- this .description = pm .SubstitutePath (this .description );
27- if (parameters !=null ){
28- for (Map .Entry <String , DataSource > apb : parameters .entrySet ()){
29- parameters .replace (apb .getKey (),apb .getValue ().UpdatePaths ());
26+ this .desc = pm .SubstitutePath (this .desc );
27+ if (params !=null ){
28+ for (Map .Entry <String , DataSource > apb : params .entrySet ()){
29+ params .replace (apb .getKey (),apb .getValue ().UpdatePaths ());
3030 }
3131 }
3232
Original file line number Diff line number Diff line change @@ -178,6 +178,7 @@ private DataStore findDataStore(String name){
178178 return dataStore ;
179179 }
180180 }
181+ System .out .println (name + " store not found." );
181182 return null ;
182183 }
183184}
You can’t perform that action at this time.
0 commit comments