Skip to content

Commit

Permalink
Remove unnecessary print statements in ApiHandler
Browse files Browse the repository at this point in the history
class
  • Loading branch information
dhzdhd committed Nov 13, 2023
1 parent e8f27af commit 377124f
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions lib/src/home/services/api.dart
Original file line number Diff line number Diff line change
Expand Up @@ -131,8 +131,6 @@ class ApiHandler {
);
}

print(res.data);

Option<PistonModel> runModel = const None();
Option<PistonModel> compileModel = const None();

Expand Down Expand Up @@ -174,8 +172,6 @@ class ApiHandler {
));
}

print(runModel);

return switch (compileModel) {
Some(value: PistonModel cModel) when runModel.isNone() =>
OutputModel(output: cModel.stdout, error: cModel.stderr),
Expand Down

0 comments on commit 377124f

Please sign in to comment.