Skip to content

Commit

Permalink
Apply spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
VishalNehra committed Jan 1, 2024
1 parent 050d4c0 commit 5ac185d
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions app/src/main/java/com/amaze/fileutilities/utilis/Utils.kt
Expand Up @@ -1255,9 +1255,12 @@ class Utils {
inputEditTextViewPair.second.filters = arrayOf(InputFilterMinMaxLong(1, upperBound))
}
if (lowerBound != null) {
inputEditTextViewPair.second.filters = arrayOf(InputFilterMinMaxLong(lowerBound,
Integer.MAX_VALUE.toLong()
))
inputEditTextViewPair.second.filters = arrayOf(
InputFilterMinMaxLong(
lowerBound,
Integer.MAX_VALUE.toLong()
)
)
}

val dialogBuilder = AlertDialog.Builder(context, R.style.Custom_Dialog_Dark)
Expand Down

0 comments on commit 5ac185d

Please sign in to comment.