You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 22, 2023. It is now read-only.
I think for starters just making the constructor resolvable with Find Usages would be a good improvement. This probably takes care of unused warnings as well.
Add Dalesbred icon next to constructors that are used in Dalesbred queries, similar to autowired bean dependency icons in the Spring IDEA-plugin.
Benefits:
@Reflective
to avoid warning for unused constructorExample:
Assuming the only query in the project is
db.findUnique(Foo.class, "select id from foo limit 1");
We have the following class for mapping the id property to a class:
This constructor is used for the query result
The following constructor has no matching query, so no icon would be next to it
The text was updated successfully, but these errors were encountered: