Skip to content

Commit

Permalink
Merge pull request #10 from ShawnLin013/feature/Horizontal-mode
Browse files Browse the repository at this point in the history
Remove @hide annotation
  • Loading branch information
ShawnLin013 authored Sep 1, 2016
2 parents 06efb07 + 6511baf commit dd578ac
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -170,9 +170,6 @@ private java.util.Formatter createFormatter(Locale locale) {

private static final TwoDigitFormatter sTwoDigitFormatter = new TwoDigitFormatter();

/**
* @hide
*/
public static final Formatter getTwoDigitFormatter() {
return sTwoDigitFormatter;
}
Expand Down
3 changes: 0 additions & 3 deletions library/src/main/java/com/shawnlin/numberpicker/Scroller.java
Original file line number Diff line number Diff line change
Expand Up @@ -494,9 +494,6 @@ public void setFinalY(int newY) {
mFinished = false;
}

/**
* @hide
*/
public boolean isScrollingInDirection(float xvel, float yvel) {
return !mFinished && Math.signum(xvel) == Math.signum(mFinalX - mStartX) &&
Math.signum(yvel) == Math.signum(mFinalY - mStartY);
Expand Down

0 comments on commit dd578ac

Please sign in to comment.