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 have a code piece like (new FilterBuilder().includePackage("XXX")).
(new FilterBuilder().includePackage("XXX"))
It suddenly started to fail at runtime (after upgrade org.reflections:reflections:jar:0.9.12 => 0.10.2)
Caused by: java.lang.NoSuchMethodError: 'org.reflections.util.FilterBuilder org.reflections.util.FilterBuilder.includePackage(java.lang.String[])'
It turned out that public interface in FilterBuilder was changed here:
FilterBuilder
-public FilterBuilder includePackage(final String... prefixes) +public FilterBuilder includePackage(String value)
-- Old one
reflections/src/main/java/org/reflections/util/FilterBuilder.java
Line 42 in 7741e8f
-- New one
Line 36 in 1f05c17
This change is problematic in so many different ways: :)
never
java.lang.String[]
String
The text was updated successfully, but these errors were encountered:
No branches or pull requests
We have a code piece like
(new FilterBuilder().includePackage("XXX"))
.It suddenly started to fail at runtime (after upgrade org.reflections:reflections:jar:0.9.12 => 0.10.2)
It turned out that public interface in
FilterBuilder
was changed here:-- Old one
reflections/src/main/java/org/reflections/util/FilterBuilder.java
Line 42 in 7741e8f
-- New one
reflections/src/main/java/org/reflections/util/FilterBuilder.java
Line 36 in 1f05c17
This change is problematic in so many different ways: :)
never
just delete a public method in a public library without a proper deprecation cycle.java.lang.String[]
toString
will make compilation work for some use-cases, and not for others.The text was updated successfully, but these errors were encountered: