We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent feafd6a commit 670863aCopy full SHA for 670863a
library/src/main/java/com/daimajia/swipe/SwipeLayout.java
@@ -1199,12 +1199,7 @@ public Status getOpenStatus() {
1199
protected void processHandRelease(float xvel, float yvel, boolean isCloseBeforeDragged) {
1200
float minVelocity = mDragHelper.getMinVelocity();
1201
View surfaceView = getSurfaceView();
1202
- DragEdge currentDragEdge = null;
1203
- try {
1204
- currentDragEdge = mCurrentDragEdge;
1205
- } catch (Exception e) {
1206
- e.printStackTrace();
1207
- }
+ DragEdge currentDragEdge = mCurrentDragEdge;
1208
if(currentDragEdge == null || surfaceView == null){
1209
return;
1210
}
0 commit comments