more refactoring

This commit is contained in:
Stephan Richter
2020-12-03 16:04:21 +01:00
parent 5aa66099fe
commit 4180d72d43
20 changed files with 156 additions and 177 deletions

View File

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