Skip to content

Commit 4c0c398

Browse files
committed
[connectivity_plus] Fix code format
1 parent 3376417 commit 4c0c398

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/connectivity_plus/tizen/src/connectivity_plus_tizen_plugin.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -120,10 +120,10 @@ class ConnectivityPlusTizenPlugin : public flutter::Plugin {
120120
Connection connection;
121121
ConnectionType type = connection.GetType();
122122
if (type != ConnectionType::kError) {
123-
flutter::EncodableList encodedList;
124-
encodedList.push_back(
123+
flutter::EncodableList encoded_list;
124+
encoded_list.push_back(
125125
flutter::EncodableValue(ConnectionTypeToString(type)));
126-
result->Success(flutter::EncodableValue(encodedList));
126+
result->Success(flutter::EncodableValue(encoded_list));
127127
} else {
128128
result->Error(std::to_string(connection.GetLastError()),
129129
connection.GetLastErrorString());

0 commit comments

Comments
 (0)