We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I think some methods of the CacheBuilder need to add the generics.
for example:
// CacheBuilder#builder:51 public static CacheBuilder builder() { return new CacheBuilder(); }
and here:
// CacheBuilder#builder:58 public CacheBuilder expireNanos(long duration, TimeUnit unit) { checkExpireNanos(duration, unit); this.expireNanos = unit.toNanos(duration); return this; }
The text was updated successfully, but these errors were encountered:
[ISSUE alibaba#7487] Add generics for the CacheBuilder.
ad43afd
[ISSUE #7487] Add generics for the CacheBuilder. (#7490)
8980a96
Successfully merging a pull request may close this issue.
I think some methods of the CacheBuilder need to add the generics.
for example:
and here:
The text was updated successfully, but these errors were encountered: