thunderbiscuit / padawan-wallet

The bitcoin wallet trainer on Android.
https://padawanwallet.com/
Apache License 2.0
116 stars 51 forks source link

Use Kotlin conventions for loop calls #102

Closed thunderbiscuit closed 3 years ago

thunderbiscuit commented 3 years ago

As per the documentation on coding convention.

for (i in 0..n - 1) { /*...*/ }  // bad
for (i in 0 until n) { /*...*/ }  // good
thunderbiscuit commented 3 years ago

The code was actually written correctly. Closing this.