JetBrains / JetBrains/java-annotations
All parameters NotNull/Nullable
Abierto
- Lenguaje dominante
- Kotlin
- Estrellas
- 463
- Forks
- 72
- Métricas de merge de PR
- Sin PR fusionados en 30 d
Descripción
This's a kind feature request,
instead of doing
```java
public void MethodName(@NotNull Arg arg1, @NotNull Arg arg2, @NotNull Arg arg3) {}
```
It's better to be:
```java
@ArgsNotNull
public void MethodName(Arg arg1, Arg arg2, Arg arg3) {}
```
Indicating all parameters should not be null (or nullable).
Thanks.
Guía de contribución
Evaluación
Este issue todavía no se ha evaluado.