You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Two methods with same method signature but not providing classes assignable? "public abstract boolean java.util.List.isEmpty()" and "public boolean java.util.AbstractCollection.isEmpty()" please report!
This condition in my mapper causes the problem: <if test="conditions != null && !conditions.isEmpty()">
conditions variable is an java.util.Collections.singletonList(). When I change this variable to ArrayList, error disapears.