Skip to content

Commit c44f86b

Browse files
committed
Fix some javadoc issues
1 parent c115a36 commit c44f86b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

library/src/main/java/com/sothree/slidinguppanel/ScrollableViewHelper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
/**
99
* Helper class for determining the current scroll positions for scrollable views. Currently works
10-
* for ListView, ScrollView & RecyclerView, but the library users can override it to add support
10+
* for ListView, ScrollView and RecyclerView, but the library users can override it to add support
1111
* for other views.
1212
*/
1313
public class ScrollableViewHelper {

library/src/main/java/com/sothree/slidinguppanel/SlidingUpPanelLayout.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -921,7 +921,7 @@ public boolean onInterceptTouchEvent(MotionEvent ev) {
921921
}
922922

923923
@Override
924-
public boolean onTouchEvent(@NonNull MotionEvent ev) {
924+
public boolean onTouchEvent(MotionEvent ev) {
925925
if (!isEnabled() || !isTouchEnabled()) {
926926
return super.onTouchEvent(ev);
927927
}
@@ -935,7 +935,7 @@ public boolean onTouchEvent(@NonNull MotionEvent ev) {
935935
}
936936

937937
@Override
938-
public boolean dispatchTouchEvent(@NonNull MotionEvent ev) {
938+
public boolean dispatchTouchEvent(MotionEvent ev) {
939939
final int action = MotionEventCompat.getActionMasked(ev);
940940

941941
if (!isEnabled() || !isTouchEnabled() || (mIsUnableToDrag && action != MotionEvent.ACTION_DOWN)) {

0 commit comments

Comments
 (0)