You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by ki...@apache.org on 2020/01/16 07:23:06 UTC

[trafficserver] 02/03: Remove unused variable

This is an automated email from the ASF dual-hosted git repository.

kichan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git

commit 2787e405d9b1fd9e744e55d00076bc7b264d1a18
Author: Kit Chan <ki...@apache.org>
AuthorDate: Mon Jan 6 21:04:42 2020 -0800

    Remove unused variable
---
 plugins/esi/lib/EsiProcessor.cc | 1 -
 plugins/esi/lib/EsiProcessor.h  | 1 -
 2 files changed, 2 deletions(-)

diff --git a/plugins/esi/lib/EsiProcessor.cc b/plugins/esi/lib/EsiProcessor.cc
index c8120bb..265e3eb 100644
--- a/plugins/esi/lib/EsiProcessor.cc
+++ b/plugins/esi/lib/EsiProcessor.cc
@@ -43,7 +43,6 @@ EsiProcessor::EsiProcessor(const char *debug_tag, const char *parser_debug_tag,
     _n_processed_try_nodes(0),
     _overall_len(0),
     _fetcher(fetcher),
-    _reqAdded(false),
     _usePackedNodeList(false),
     _esi_vars(variables),
     _expression(expression_debug_tag, debug_func, error_func, _esi_vars),
diff --git a/plugins/esi/lib/EsiProcessor.h b/plugins/esi/lib/EsiProcessor.h
index d264a05..a057763 100644
--- a/plugins/esi/lib/EsiProcessor.h
+++ b/plugins/esi/lib/EsiProcessor.h
@@ -139,7 +139,6 @@ private:
   HttpDataFetcher &_fetcher;
   EsiLib::StringHash _include_urls;
 
-  bool _reqAdded;
   bool _usePackedNodeList;
 
   bool _processEsiNode(const EsiLib::DocNodeList::iterator &iter);