Skip to content
This repository was archived by the owner on Nov 30, 2023. It is now read-only.

Commit bbf3166

Browse files
committed
Dart: Remove unnecessary instructions + format
1 parent 4bf27ba commit bbf3166

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

containers/dart/test-project/bin/server.dart

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,12 @@ Future main() async {
1010
InternetAddress.loopbackIPv4,
1111
8080,
1212
);
13-
14-
print('*************************************************************************');
15-
print('* Press F1, select "Remote-Containers: Forward Port from Container...", *');
16-
print('* and select the server port listed below to access server. *');
17-
print('*************************************************************************');
13+
1814
print('Listening on localhost:${server.port}');
1915

2016
await for (HttpRequest request in server) {
21-
request.response..write('Hello remote world!')..close();
17+
request.response
18+
..write('Hello remote world!')
19+
..close();
2220
}
23-
}
21+
}

0 commit comments

Comments
 (0)