Skip to content

Commit eb1dd0e

Browse files
Fix library (#19)
* fix-data-type * fix-data-type * fix-date-type * fix-data-type
1 parent 0b927f4 commit eb1dd0e

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

lib/ezy_codec.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,4 @@ class EzyRSAProxy {
3939
callback(result)
4040
});
4141
}
42-
}
42+
}

lib/ezy_config.dart

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ class EzyConfig {
2727
}
2828

2929
class EzyPingConfig {
30-
3130
late int pingPeriod = 3000;
3231
late int maxLostPingCount = 5;
3332

@@ -51,4 +50,4 @@ class EzyReconnectConfig {
5150
map["reconnectPeriod"] = reconnectPeriod;
5251
return map;
5352
}
54-
}
53+
}

lib/ezy_handlers.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ class EzyAppResponseHandler extends EzyAbstractDataHandler {
356356
var appId = data[0] as int;
357357
var responseData = data[1] as List;
358358
var cmd = responseData[0];
359-
var commandData = responseData[1] as Map;
359+
var commandData = responseData[1];
360360

361361
var app = client.getAppById(appId);
362362
if (app == null) {

lib/ezy_util.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ class UUID {
1616
)
1717
);
1818
}
19-
}
19+
}

0 commit comments

Comments
 (0)