Skip to content

Commit 9297c66

Browse files
authored
Remove unnecessary async keywords(#2130)
1 parent 6b112b0 commit 9297c66

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dwds/lib/src/services/expression_evaluator.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,7 @@ class ExpressionEvaluator {
386386
Future<RemoteObject> _callJsFunction(
387387
String function,
388388
Map<String, String> scope,
389-
) async {
389+
) {
390390
final jsCode = _createEvalFunction(function, scope.keys);
391391

392392
_logger.finest('Evaluating JS: "$jsCode" with scope: $scope');
@@ -403,7 +403,7 @@ class ExpressionEvaluator {
403403
Future<RemoteObject> _evaluateJsExpressionInFrame(
404404
int frameIndex,
405405
String expression,
406-
) async {
406+
) {
407407
final jsCode = _createEvalExpression(expression);
408408

409409
_logger.finest('Evaluating JS: "$jsCode"');

0 commit comments

Comments
 (0)