Skip to content

Commit

Permalink
Fix some javadoc issues
Browse files Browse the repository at this point in the history
  • Loading branch information
tokudu committed Mar 7, 2016
1 parent c115a36 commit c44f86b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

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

This comment has been minimized.

Copy link
@av1934413

av1934413 Sep 1, 2023

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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -921,7 +921,7 @@ public boolean onInterceptTouchEvent(MotionEvent ev) {
}

@Override
public boolean onTouchEvent(@NonNull MotionEvent ev) {
public boolean onTouchEvent(MotionEvent ev) {
if (!isEnabled() || !isTouchEnabled()) {
return super.onTouchEvent(ev);
}
Expand All @@ -935,7 +935,7 @@ public boolean onTouchEvent(@NonNull MotionEvent ev) {
}

@Override
public boolean dispatchTouchEvent(@NonNull MotionEvent ev) {
public boolean dispatchTouchEvent(MotionEvent ev) {
final int action = MotionEventCompat.getActionMasked(ev);

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

0 comments on commit c44f86b

Please sign in to comment.