remove error comments

This commit is contained in:
开源海哥 2023-06-21 18:31:50 +08:00
parent 86e0d1c367
commit 817d37de8d

View File

@ -220,7 +220,6 @@ public class TableInfoFactory {
Type genericType = TypeParameterResolver.resolveFieldType(field, entityClass);
if (genericType instanceof ParameterizedType) {
Class<?> actualTypeArgument = (Class<?>) ((ParameterizedType) genericType).getActualTypeArguments()[0];
//需排除 List<String> List<Long> 等场景
tableInfo.addCollectionType(field, actualTypeArgument);
}
}