`ParameterizedTypeName#annotated` would add the annotations repeatedly.
Author: zhengxiaoyao0716Created Oct 9, 2022Updated Oct 9, 2022
When we first used the #annotated( A, B, C ) method, it appended the annotations both to the ParameterizedTypeName.this.rawType and TypeName.this.annotations, while if we use the #annotated() method again, the annotations A, B, C would appended to rawType repeatedly.

Source: square/javapoet