Fix task input declaration when using LazyPropertyMap (#58850) (#58934)

This commit is contained in:
Rene Groeschke 2020-07-02 20:52:31 +02:00 committed by GitHub
parent be804b765d
commit 0a6e6ef4be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -146,11 +146,13 @@ public class LazyPropertyMap<K, V> extends AbstractLazyPropertyCollection implem
this.normalization = normalization;
}
@Input
public PropertyNormalization getNormalization() {
return normalization;
}
@Override
@Input
public String getName() {
return getKey().toString();
}