Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
`getGenericSignature()` is not documented well, but I noticed that `getGenericType()` compares the result of `getGenericSignature()` against `null`, so that got me to verify that it can in fact return `null`: ``` public class RecordComponentGenericSignature { record Rec(String s) {} public static void main(String[] args) { System.out.println(Rec.class.getRecordComponents()[0].getGenericSignature()); } } ```
- Loading branch information