Closed gagath closed 7 years ago
Used Android Studio for code reformat and optimize imports on whole project. Also changed for loops to foreach loops, and removed euphemisms like if (myCondition == true) to if (myCondition) (basically refactored almost all Android Studio warnings).
if (myCondition == true)
if (myCondition)
Thanks for the pull requests, however due to conflict with the add of spinner for endpoints selection, I considered some further refactoring.
Used Android Studio for code reformat and optimize imports on whole project. Also changed for loops to foreach loops, and removed euphemisms like
if (myCondition == true)
toif (myCondition)
(basically refactored almost all Android Studio warnings).