Checker Framework initialization.fields.uninitialize false positive
问题 Here's my error found : @Initialized @Nullable String required: @Initialized @NonNull String /Users/calebcushing/IdeaProjects/ppm/scaf/src/main/java/com/xenoterracide/scaf/Application.java:21: error: [initialization.fields.uninitialized] the constructor does not initialize fields: arg, args, dir public final class Application implements Runnable { ^ 3 errors These are initialized by picocli, so I added SuppressWarnings, not certain why it's still happening. @SuppressWarnings({ "NullAway.Init"