Skip to content

Commit

Permalink
Alias Property should default to null
Browse files Browse the repository at this point in the history
  • Loading branch information
Emil Forslund committed Jan 13, 2016
1 parent 3c6b19c commit ea3bd83
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -31,7 +31,7 @@
public interface HasAliasProperty extends DocumentProperty, HasAlias {

default StringProperty aliasProperty() {
return stringPropertyOf(HasAlias.ALIAS, HasAlias.super::getName);
return stringPropertyOf(HasAlias.ALIAS, () -> null);
}

@Override
Expand Down

0 comments on commit ea3bd83

Please sign in to comment.