Skip to content

Commit

Permalink
oh, fix wrong commit
Browse files Browse the repository at this point in the history
  • Loading branch information
elucash committed Apr 8, 2018
1 parent 1e05f66 commit f16af40
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -25,8 +25,8 @@ abstract class BaseInterned<T extends BaseInterned<T>> {

@SuppressWarnings("unchecked")
@Value.Check
protected String intern() {
return "";// INTERNER.intern(this);
protected T intern() {
return (T) INTERNER.intern(this);
}
}

Expand Down

0 comments on commit f16af40

Please sign in to comment.