[clangd] Remove unused variable. NFC

llvm-svn: 324354
This commit is contained in:
Eric Liu 2018-02-06 15:27:43 +00:00
parent 7d92b7e23a
commit c42d1431f6

View File

@ -244,7 +244,6 @@ static llvm::Optional<std::string> readStandardMessage(std::istream &In,
if (ContentLength > 0) {
std::string JSON(ContentLength, '\0');
llvm::StringRef JSONRef;
In.read(&JSON[0], ContentLength);
Out.mirrorInput(StringRef(JSON.data(), In.gcount()));