Skip to content

Commit

Permalink
Dev
Browse files Browse the repository at this point in the history
  • Loading branch information
yuriy-budiyev committed Dec 17, 2018
1 parent fe00ecd commit a9bea19
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ public TimeInterpolator getProgressAnimationInterpolator() {
/**
* Progress animation interpolator for non-indeterminate mode
*/
public void setProgressAnimationInterpolator(@NonNull TimeInterpolator interpolator) {
public void setProgressAnimationInterpolator(@NonNull final TimeInterpolator interpolator) {
//noinspection ConstantConditions
if (interpolator == null) {
throw new IllegalArgumentException("Interpolator can't be null");
Expand Down Expand Up @@ -306,7 +306,7 @@ public TimeInterpolator getIndeterminateRotationAnimationInterpolator() {
/**
* Rotation animation interpolator for indeterminate mode
*/
public void setIndeterminateRotationAnimationInterpolator(@NonNull TimeInterpolator interpolator) {
public void setIndeterminateRotationAnimationInterpolator(@NonNull final TimeInterpolator interpolator) {
//noinspection ConstantConditions
if (interpolator == null) {
throw new IllegalArgumentException("Interpolator can't be null");
Expand Down Expand Up @@ -353,7 +353,7 @@ public TimeInterpolator getIndeterminateSweepAnimationInterpolator() {
/**
* Sweep animation interpolator for indeterminate mode
*/
public void setIndeterminateSweepAnimationInterpolator(@NonNull TimeInterpolator interpolator) {
public void setIndeterminateSweepAnimationInterpolator(@NonNull final TimeInterpolator interpolator) {
//noinspection ConstantConditions
if (interpolator == null) {
throw new IllegalArgumentException("Interpolator can't be null");
Expand Down

0 comments on commit a9bea19

Please sign in to comment.