-
Notifications
You must be signed in to change notification settings - Fork 9
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
Replace JetBrains annotations with Spring ones #296
Comments
I am looking at the options, and I think we should consider JSpecify annotations.
There are also Spring's @NonNull currently uses I suggest using JSpecify, too. IDE configurationOnce this is resolved, it is possible to change the Intellij idea configuration to use desired annotations for code generation instead of the ones from Jetbrains. And it should be mentioned in implementation docs. https://www.jetbrains.com/help/idea/annotating-source-code.html#nullability-annotations |
I would actually prefer the standard Jakarta |
Ok, I suggest going with the standard Jakarta annotations. It requires no additional dependencies and works fine with IDEs without any extra configuration. |
…& Nullable with jakarta annotations
[Ref #296] Replacing nullability annotations with jakarta
A mix of JetBrains (
org.jetbrains.annotations
, e.g.@NotNull
) and Spring (org.springframework.lang
, e.g.,@NonNull
) is used within TermIt. We need to unify these to the Spring-based ones.The text was updated successfully, but these errors were encountered: