Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upCannot resolve sorted() in streams #2716
Open
Labels
Comments
I'll mark it as a bug because it sounds like it is, but I'm not sure of the cause or if it is another manifestation of an existing report. |
maybe, it failed to solve the call expression with calls as arguments. I run into similar problems |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello everyone.
Here is one more issue (looks like a bug) in Symbol Solver (reproduced in the latest version 3.16.1). The sorted() method can't be resolved in a stream. I've prepared simple class example where the problem is appeared:
When I try to resolve the methods of the class using the following code, Solver throws the exception:
Exception:
The exception is caused by resolving method
.sorted(Comparator.comparing(a -> a.getName()))
, because the example works without the line.Is this a bug or I miss something?
Thank you in advice and for previous fixes.