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
We saw a false positive report of source / binary incompatibility
The class in question directly extended the interfaces Feature and Locatable
We had a hierarchy like this:
interface Locatable interface Feature extends Locatable class Interval implements Locatable, Feature
In a new version we changed Interval so it no longer directly extends Locatable but still extends it through Feature.
We (incorrectly) get the following error: High severity: Removed super-interface Locatable.
High severity: Removed super-interface Locatable.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
We saw a false positive report of source / binary incompatibility
The class in question directly extended the interfaces Feature and Locatable
We had a hierarchy like this:
In a new version we changed Interval so it no longer directly extends Locatable but still extends it through Feature.
We (incorrectly) get the following error:
High severity: Removed super-interface Locatable.
The text was updated successfully, but these errors were encountered: