Skip to content

Commit a2c521d

Browse files
committed
chore: Remove leftover
1 parent f0a16e1 commit a2c521d

File tree

1 file changed

+2
-9
lines changed

1 file changed

+2
-9
lines changed

src/frontend/cxx/lsp_server.cc

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -83,14 +83,7 @@ void Server::Text::computeLineStartOffsets() {
8383
}
8484

8585
Server::Server(const CLI& cli)
86-
: cli(cli), input(std::cin), output(std::cout), log(std::cerr) {
87-
// create workers
88-
const auto workerCount = 4;
89-
90-
auto worker = [] {
91-
92-
};
93-
}
86+
: cli(cli), input(std::cin), output(std::cout), log(std::cerr) {}
9487

9588
Server::~Server() {}
9689

@@ -138,7 +131,7 @@ auto Server::nextRequest() -> std::optional<json> {
138131

139132
if (it == headers.end()) {
140133
return std::nullopt;
141-
};
134+
}
142135

143136
const auto contentLength = std::stoi(it->second);
144137

0 commit comments

Comments
 (0)