Skip to content

Commit d28dac6

Browse files
committed
Add review's commit #2
Signed-off-by: MuHong Byun <[email protected]>
1 parent 2d187dc commit d28dac6

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

shell/platform/tizen/channels/settings_channel_tizen.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,9 @@ bool SettingsChannel::Prefer24HourTime() {
2828
if (system_settings_get_value_bool(
2929
SYSTEM_SETTINGS_KEY_LOCALE_TIMEFORMAT_24HOUR, &value) ==
3030
SYSTEM_SETTINGS_ERROR_NONE) {
31+
return value;
3132
}
32-
return value;
33+
return false;
3334
}
3435

3536
} // namespace flutter

shell/platform/tizen/flutter_tizen_engine_unittest.cc

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,8 @@
22
// Use of this source code is governed by a BSD-style license that can be
33
// found in the LICENSE file.
44

5-
#include <filesystem>
6-
7-
#include "flutter/shell/platform/embedder/test_utils/proc_table_replacement.h"
85
#include "flutter/shell/platform/tizen/flutter_tizen_engine.h"
6+
#include "flutter/shell/platform/embedder/test_utils/proc_table_replacement.h"
97
#include "flutter/shell/platform/tizen/testing/engine_modifier.h"
108
#include "gtest/gtest.h"
119

0 commit comments

Comments
 (0)