Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The key issue here is the use of @nullable with void. This is problematic because: 1. The @nullable annotation is meant to indicate that a method can return null 2. However, void means the method doesn't return anything at all 3. Therefore, @nullable on a void method is meaningless and incorrect In most IDEs, this would likely trigger a warning because it's a nonsensical combination. The method itself (printing "in method") would work fine, but the annotation serves no purpose and is technically incorrect.
- Loading branch information