Update BaseProcessor.java

This commit is contained in:
Skat
2020-11-01 16:04:30 +03:00
committed by GitHub
parent 801251e1a6
commit ab604ec1c0

View File

@ -120,7 +120,7 @@ public abstract class BaseProcessor extends AbstractProcessor{
List<? extends TypeMirror> boundsMirrors = element.getBounds();
List<TypeName> boundsTypeNames = new ArrayList<>();
for (TypeMirror typeMirror : boundsMirrors){
for(TypeMirror typeMirror : boundsMirrors){
boundsTypeNames.add(TypeName.get(typeMirror));
}