cleanup comments

Signed-off-by: Harry Bond <me@hbond.xyz>
This commit is contained in:
Harry Bond 2024-12-29 15:27:43 +00:00
parent 48916d6e06
commit a577a24911
2 changed files with 1 additions and 16 deletions

View file

@ -475,21 +475,6 @@ public class MwmActivity extends BaseMwmFragmentActivity
}
}
// @Override
// @StyleRes
// protected int getThemeResourceId(@NonNull String theme)
// {
// Context context = getApplicationContext();
//
// if (ThemeUtils.isDefaultTheme(context, theme))
// return R.style.MwmTheme_MainActivity;
//
// if (ThemeUtils.isNightTheme(context, theme))
// return R.style.MwmTheme_Night_MainActivity;
//
// return super.getThemeResourceId(theme);
// }
@Override
public void onDisplayChangedToCar(@NonNull Runnable onTaskFinishedCallback)
{

View file

@ -51,7 +51,6 @@ public abstract class BaseMwmFragmentActivity extends AppCompatActivity
{
super.onCreate(savedInstanceState);
mThemeName = Config.getThemeSettings(getApplicationContext());
//setTheme(getThemeResourceId(mThemeName));
EdgeToEdge.enable(this, SystemBarStyle.dark(Color.TRANSPARENT));
RtlUtils.manageRtl(this);
if (!MwmApplication.from(this).arePlatformAndCoreInitialized())
@ -112,6 +111,7 @@ public abstract class BaseMwmFragmentActivity extends AppCompatActivity
super.onPostResume();
if (!mThemeName.equals(Config.getThemeSettings(getApplicationContext())))
{
// TODO: is this still needed?
// Workaround described in https://code.google.com/p/android/issues/detail?id=93731
UiThread.runLater(this::recreate);
}