Skip to content

Commit

Permalink
[connectivity_plus] Fix code format
Browse files Browse the repository at this point in the history
  • Loading branch information
JSUYA committed Nov 11, 2024
1 parent 3376417 commit 4c0c398
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -120,10 +120,10 @@ class ConnectivityPlusTizenPlugin : public flutter::Plugin {
Connection connection;
ConnectionType type = connection.GetType();
if (type != ConnectionType::kError) {
flutter::EncodableList encodedList;
encodedList.push_back(
flutter::EncodableList encoded_list;
encoded_list.push_back(
flutter::EncodableValue(ConnectionTypeToString(type)));
result->Success(flutter::EncodableValue(encodedList));
result->Success(flutter::EncodableValue(encoded_list));
} else {
result->Error(std::to_string(connection.GetLastError()),
connection.GetLastErrorString());
Expand Down

0 comments on commit 4c0c398

Please sign in to comment.