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 --- .../src/Protocol/SimpleJSON/StructContext.php | 52 ---------------------- 1 file changed, 52 deletions(-) delete mode 100644 vendor/packaged/thrift/src/Protocol/SimpleJSON/StructContext.php (limited to 'vendor/packaged/thrift/src/Protocol/SimpleJSON/StructContext.php') diff --git a/vendor/packaged/thrift/src/Protocol/SimpleJSON/StructContext.php b/vendor/packaged/thrift/src/Protocol/SimpleJSON/StructContext.php deleted file mode 100644 index 38a62d1a2..000000000 --- a/vendor/packaged/thrift/src/Protocol/SimpleJSON/StructContext.php +++ /dev/null @@ -1,52 +0,0 @@ -p_ = $p; - } - - public function write() - { - if ($this->first_) { - $this->first_ = false; - $this->colon_ = true; - } else { - $this->p_->getTransport()->write( - $this->colon_ ? - TSimpleJSONProtocol::COLON : - TSimpleJSONProtocol::COMMA - ); - $this->colon_ = !$this->colon_; - } - } -} -- cgit v1.2.3