remove nullable.
This commit is contained in:
parent
4e55a83a73
commit
85adc4a022
|
|
@ -3,7 +3,7 @@ android:
|
|||
components:
|
||||
- tools
|
||||
- platform-tools
|
||||
- build-tools-25.2.0
|
||||
- build-tools-25.0.2
|
||||
- android-25
|
||||
- extra-android-support
|
||||
- extra
|
||||
|
|
|
|||
|
|
@ -3,7 +3,6 @@ package com.daimajia.swipe;
|
|||
import android.content.Context;
|
||||
import android.content.res.TypedArray;
|
||||
import android.graphics.Rect;
|
||||
import android.support.annotation.Nullable;
|
||||
import android.support.v4.view.GravityCompat;
|
||||
import android.support.v4.view.ViewCompat;
|
||||
import android.support.v4.widget.ViewDragHelper;
|
||||
|
|
@ -1270,7 +1269,6 @@ public class SwipeLayout extends FrameLayout {
|
|||
/**
|
||||
* return null if there is no bottom view
|
||||
*/
|
||||
@Nullable
|
||||
public View getCurrentBottomView() {
|
||||
List<View> bottoms = getBottomViews();
|
||||
if (mCurrentDragEdge.ordinal() < bottoms.size()) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue