implemented AddDestination action and evaluation of destination tags of trains.

This commit is contained in:
Stephan Richter
2021-01-16 04:05:06 +01:00
parent bf234e19bb
commit 0e6069a5a1
14 changed files with 238 additions and 30 deletions

View File

@@ -54,7 +54,7 @@ public abstract class TextAction extends Action {
@Override
protected Object update(HashMap<String, String> params) {
LOG.debug("update: {}",params);
text = params.get(TEXT);
if (params.containsKey(TEXT)) text = params.get(TEXT);
return super.update(params);
}
}