Skip to content

Commit 12b29e0

Browse files
committed
quic: Remove debug counter
1 parent 93309f0 commit 12b29e0

File tree

2 files changed

+0
-6
lines changed

2 files changed

+0
-6
lines changed

src/quic/streams.cc

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -864,8 +864,6 @@ Stream::Stream(BaseObjectWeakPtr<Session> session,
864864
stats_(env()->isolate()),
865865
state_(env()->isolate()),
866866
session_(std::move(session)),
867-
byteCount_(0),
868-
byteCountOut_(0),
869867
inbound_(DataQueue::Create(env())),
870868
headers_(env()->isolate()) {
871869
MakeWeak();
@@ -897,8 +895,6 @@ Stream::Stream(BaseObjectWeakPtr<Session> session,
897895
state_(env()->isolate()),
898896
session_(std::move(session)),
899897
inbound_(DataQueue::Create(env())),
900-
byteCount_(0),
901-
byteCountOut_(0),
902898
maybe_pending_stream_(
903899
std::make_unique<PendingStream>(direction, this, session_)),
904900
headers_(env()->isolate()) {

src/quic/streams.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -292,8 +292,6 @@ class Stream final : public AsyncWrap,
292292
struct Stats;
293293

294294
private:
295-
size_t byteCount_;
296-
size_t byteCountOut_;
297295
struct Impl;
298296
struct PendingHeaders;
299297

0 commit comments

Comments
 (0)