daimajia / AndroidSwipeLayout

The Most Powerful Swipe Layout!
MIT License
12.38k stars 2.67k forks source link

IllegalArgumentException int the SwipeItemMangerImpl #447

Open JQMotee opened 7 years ago

JQMotee commented 7 years ago
 if (!(adapter instanceof SwipeItemMangerInterface))
            throw new IllegalArgumentException("adapter should implement the SwipeAdapterInterface");

it should be

 if (!(adapter instanceof SwipeAdapterInterface))
            throw new IllegalArgumentException("adapter should implement the SwipeAdapterInterface");
LisovyiDK commented 6 years ago

@daimajia please provide the new library version from master branch. v1.2.0 has incorrect SwipeItemMangerImpl.

Bloubloublou commented 3 years ago

@daimajia this is a critical bug for using your lib in a recycler view. Could you please make a new version for this one ?