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 found this while comparing Apache Hadoop 2.7.2 with 3.0.0-alpha2 (trunk).
We have a class that looked like this in 2.7.2:
public class FileStatus implements Writable, Comparable {
We changed it to this:
public class FileStatus implements Writable, Comparable<FileStatus> {
I think this is compatible based on my read of https://docs.oracle.com/javase/specs/jls/se7/html/jls-13.html#jls-13.4.5 . In any case, JACC says that Comparable was removed, which isn't quite accurate.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I found this while comparing Apache Hadoop 2.7.2 with 3.0.0-alpha2 (trunk).
We have a class that looked like this in 2.7.2:
We changed it to this:
I think this is compatible based on my read of https://docs.oracle.com/javase/specs/jls/se7/html/jls-13.html#jls-13.4.5 . In any case, JACC says that Comparable was removed, which isn't quite accurate.
The text was updated successfully, but these errors were encountered: