-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
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
[BUG] Wrong class is tried when finding object creation expression #58
Comments
My hunch is the problem lies in the fact that the EventsView is extending the EditView, and our class finder only looks for the superclass: public class EventsView extends EditView<Event, EventRecord, EventRepository>
implements BeforeEnterObserver, HasDynamicTitle``` I am trying to prove that theory atm. |
This is also a different error with 24.6.2 version. This:
Or this:
Probaby there was a change around how we are handling files in the project between 24.6.1 and 2, but I would not go in the rabbit hole. We have this test flow parent and children classes, which can trigger the same issue here: It probably would be good to merge this everywhere on the branches, and then try to fix the separate new issues. |
Description of the Bug
Extracted from #56
The
EventsView
class containsWhen selecting either of the split layout children, the following is logged
Line 35 in
EventsView.java
does contain what it is looking for:SplitLayout splitLayout = new SplitLayout();
but line 35 in the super classEditView.java
contains what is finds:public static final String ID = "id";
The text was updated successfully, but these errors were encountered: