Michael Morrison

Results 5 issues of Michael Morrison

I spent a while working with the fade_time parameter today, trying to figure out its quirkiness (because it certainly is not milliseconds or seconds). At least on the two kickstarter...

Unless I'm missing something, I believe the `@Retention` of `@DefaultQualifier` should be RUNTIME, not SOURCE. As is, `@DefaultQualifier(@Nonnull)` used within a published library is disregarded when the library is consumed...

If a class in the current project extends a superclass from a library, and that superclass is annotated with an annotation which is missing from the classpath, the immutables annotation...

This input: ``` @org.immutables.value.Value.Immutable public abstract class Test { public abstract @jakarta.annotation.Nullable String getStringJakarta(); public abstract @org.jspecify.annotations.Nullable String getStringJspecify(); public abstract @org.checkerframework.checker.nullness.qual.Nullable String getStringChecker(); } ``` results in this expected...