Skip to content

Commit 9c116a6

Browse files
committed
quic: Fix linting 4
1 parent 99fc481 commit 9c116a6

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/quic/session.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -546,7 +546,7 @@ struct Session::Impl final : public MemoryRetainer {
546546
// as the reference from session to us may go away
547547
// while we call OnTimeout
548548
session_->OnTimeout();
549-
}) {
549+
}) {
550550
timer_.Unref();
551551
}
552552
DISALLOW_COPY_AND_MOVE(Impl)

src/quic/streams.cc

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1395,8 +1395,7 @@ JS_METHOD_IMPL(DataQueueFeeder::Submit) {
13951395
if (args[1]->IsBoolean() && args[1].As<v8::Boolean>()->Value()) {
13961396
done = true;
13971397
}
1398-
if (!args[0].IsEmpty() &&
1399-
!args[0]->IsUndefined() && !args[0]->IsNull()) {
1398+
if (!args[0].IsEmpty() && !args[0]->IsUndefined() && !args[0]->IsNull()) {
14001399
CHECK_GT(feeder->pendingPulls_.size(), 0);
14011400
auto chunk = args[0];
14021401

0 commit comments

Comments
 (0)