Commit 49a62339 authored by liaozan's avatar liaozan 🏀

Remove unused inspection

parent 14482095
...@@ -95,7 +95,6 @@ public class BaseServiceImpl<M extends BaseMapper<T>, T extends BaseEntity> exte ...@@ -95,7 +95,6 @@ public class BaseServiceImpl<M extends BaseMapper<T>, T extends BaseEntity> exte
if (isEmpty(ids)) { if (isEmpty(ids)) {
return emptyMap(); return emptyMap();
} }
// noinspection unchecked
List<T> dataList = lambdaQuery().select(T::getId, column).in(T::getId, ids).list(); List<T> dataList = lambdaQuery().select(T::getId, column).in(T::getId, ids).list();
return StreamUtils.toMap(dataList, T::getId, column); return StreamUtils.toMap(dataList, T::getId, column);
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment