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
with: com.thoughtworks.qdox qdox 2.0-M9
The following code fails to parse:
package org.spf4j.base; import java.lang.ref.Reference; import java.lang.ref.SoftReference; import java.lang.ref.WeakReference; import java.util.function.Function; public enum ReferenceType { WEAK((Object object) -> new WeakReference<>(object)), SOFT((Object object) -> new SoftReference<>(object)); private final Function<Object, Reference<Object>> factory; ReferenceType(final Function<Object, Reference<Object>> factory) { this.factory = factory; } public <T> Reference<T> create(final T object) { return (Reference<T>) factory.apply(object); } }
The text was updated successfully, but these errors were encountered:
The issue is still actual for 2.0-M10 version.
Sorry, something went wrong.
The issue is still actual for 2.0-M10 version. Not resolve
fix paul-hammant#50
f00f072
fix paul-hammant#54 fix paul-hammant#48
No branches or pull requests
with:
com.thoughtworks.qdox
qdox
2.0-M9
The following code fails to parse:
The text was updated successfully, but these errors were encountered: