Small improvement

This commit is contained in:
M66B
2021-07-13 00:34:10 +02:00
parent de843ba57c
commit b6fc9a02d2
2 changed files with 2 additions and 4 deletions

View File

@@ -1695,9 +1695,7 @@ public class Log {
int uiMode = context.getResources().getConfiguration().uiMode;
sb.append(String.format("UI mode: 0x"))
.append(Integer.toHexString(uiMode))
.append(" night")
.append(" no=").append((uiMode & Configuration.UI_MODE_NIGHT_NO) != 0)
.append(" yes=").append((uiMode & Configuration.UI_MODE_NIGHT_YES) != 0)
.append(" night=").append(Helper.isNight(context))
.append("\r\n");
sb.append("Transliterate: ")