This repository was archived by the owner on Oct 10, 2024. It is now read-only.

Description
In MethodSpec.Builder, I have...
builder.addAnnotation(Value.Lazy.class);
In JavaFile.Builder, I have..
JavaFile.builder(..)
.addStaticImport(Value.class, "Immutable", "Default", "Lazy");
static import is added, however the annotation contains the fully qualified static name....
@Value.Lazy
public Optional<String> get...() {