Skip to content

Commit

Permalink
added ECSResource.getRetriever() as alias for retriever()
Browse files Browse the repository at this point in the history
  • Loading branch information
Zomis committed May 4, 2015
1 parent d808d08 commit 1533e68
Showing 1 changed file with 8 additions and 0 deletions.
Expand Up @@ -24,4 +24,12 @@ default int getFor(final Entity entity) {
default ResourceRetriever retriever() {
return ResourceRetriever.forResource(this);
}

/**
* alias for {@link #retriever()}
* @return see {@link #retriever()}
*/
default ResourceRetriever getRetriever() {
return retriever();
}
}

0 comments on commit 1533e68

Please sign in to comment.