Skip to content

Commit

Permalink
Fixed detekt errors
Browse files Browse the repository at this point in the history
  • Loading branch information
nbradbury committed Dec 12, 2024
1 parent 7576fbb commit 18a731a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import androidx.appcompat.app.AppCompatActivity
* the need for this class. Instead of extending from this class, we should extend
* from AppCompatActivity.
*/
abstract class AppCompatActivity : AppCompatActivity() {
abstract class LocaleAwareActivity : AppCompatActivity() {
/**
* Used to update locales on API 21 to API 25.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ class PerAppLocaleManager @Inject constructor(

/**
* Called when the device language is changed from our in-app language picker
* TODO: Detect when language changed from app settings dialog
* TODO Detect when language changed from app settings dialog
*/
fun onLanguageChanged(languageCode: String) {
if (languageCode.isEmpty()) {
Expand Down

0 comments on commit 18a731a

Please sign in to comment.