Skip to content

Commit

Permalink
fix(http_server): add UnimplementedError to start and stop
Browse files Browse the repository at this point in the history
  • Loading branch information
JKRhb committed Mar 21, 2022
1 parent dfd2fd8 commit 3819b8b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lib/src/binding_http/http_server.dart
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,14 @@ class HttpServer extends ProtocolServer {
}

@override
Future<void> start(Map<String, Map<String, Credentials>> credentials) async {}
Future<void> start(Map<String, Map<String, Credentials>> credentials) async {
// TODO(JKRhb): implement start
throw UnimplementedError();
}

@override
Future<void> stop() async {
// TODO(JKRhb): implement stop
throw UnimplementedError();
}
}

0 comments on commit 3819b8b

Please sign in to comment.