From cdd7ad020e165fe680703b6d3319b908b682fb7a Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Fri, 20 Oct 2023 17:12:29 +0300 Subject: jaeger-client -> opentelemetry --- .../thrift/src/Protocol/JSON/PairContext.php | 64 ---------------------- 1 file changed, 64 deletions(-) delete mode 100644 vendor/packaged/thrift/src/Protocol/JSON/PairContext.php (limited to 'vendor/packaged/thrift/src/Protocol/JSON/PairContext.php') diff --git a/vendor/packaged/thrift/src/Protocol/JSON/PairContext.php b/vendor/packaged/thrift/src/Protocol/JSON/PairContext.php deleted file mode 100644 index 7b353c4ad..000000000 --- a/vendor/packaged/thrift/src/Protocol/JSON/PairContext.php +++ /dev/null @@ -1,64 +0,0 @@ -p_ = $p; - } - - public function write() - { - if ($this->first_) { - $this->first_ = false; - $this->colon_ = true; - } else { - $this->p_->getTransport()->write($this->colon_ ? TJSONProtocol::COLON : TJSONProtocol::COMMA); - $this->colon_ = !$this->colon_; - } - } - - public function read() - { - if ($this->first_) { - $this->first_ = false; - $this->colon_ = true; - } else { - $this->p_->readJSONSyntaxChar($this->colon_ ? TJSONProtocol::COLON : TJSONProtocol::COMMA); - $this->colon_ = !$this->colon_; - } - } - - public function escapeNum() - { - return $this->colon_; - } -} -- cgit v1.2.3