diff --git a/source/extensions/filters/http/jwt_authn/authenticator.cc b/source/extensions/filters/http/jwt_authn/authenticator.cc index fa361f90a237d..e158adb398d4c 100644 --- a/source/extensions/filters/http/jwt_authn/authenticator.cc +++ b/source/extensions/filters/http/jwt_authn/authenticator.cc @@ -12,7 +12,6 @@ #include "jwt_verify_lib/jwt.h" #include "jwt_verify_lib/verify.h" -using ::envoy::config::filter::http::jwt_authn::v2alpha::JwtProvider; using ::google::jwt_verify::CheckAudience; using ::google::jwt_verify::Status; diff --git a/source/extensions/filters/http/jwt_authn/extractor.cc b/source/extensions/filters/http/jwt_authn/extractor.cc index 08103d8522071..c6950a2b31c31 100644 --- a/source/extensions/filters/http/jwt_authn/extractor.cc +++ b/source/extensions/filters/http/jwt_authn/extractor.cc @@ -10,7 +10,6 @@ #include "absl/strings/match.h" using ::envoy::config::filter::http::jwt_authn::v2alpha::JwtAuthentication; -using ::envoy::config::filter::http::jwt_authn::v2alpha::JwtHeader; using ::envoy::config::filter::http::jwt_authn::v2alpha::JwtProvider; using Envoy::Http::LowerCaseString; diff --git a/source/extensions/filters/http/jwt_authn/matcher.cc b/source/extensions/filters/http/jwt_authn/matcher.cc index 0a187c3eb4516..53c61c2c58672 100644 --- a/source/extensions/filters/http/jwt_authn/matcher.cc +++ b/source/extensions/filters/http/jwt_authn/matcher.cc @@ -6,7 +6,6 @@ #include "absl/strings/match.h" using ::envoy::api::v2::route::RouteMatch; -using ::envoy::config::filter::http::jwt_authn::v2alpha::JwtProvider; using ::envoy::config::filter::http::jwt_authn::v2alpha::RequirementRule; using Envoy::Router::ConfigUtility; diff --git a/test/extensions/filters/http/jwt_authn/extractor_test.cc b/test/extensions/filters/http/jwt_authn/extractor_test.cc index 1286fcdb51f84..944e06bce06a8 100644 --- a/test/extensions/filters/http/jwt_authn/extractor_test.cc +++ b/test/extensions/filters/http/jwt_authn/extractor_test.cc @@ -9,10 +9,6 @@ using ::envoy::config::filter::http::jwt_authn::v2alpha::JwtAuthentication; using ::envoy::config::filter::http::jwt_authn::v2alpha::JwtProvider; using Envoy::Http::TestHeaderMapImpl; -using ::testing::_; -using ::testing::Invoke; -using ::testing::NiceMock; - namespace Envoy { namespace Extensions { namespace HttpFilters { diff --git a/test/extensions/filters/http/jwt_authn/filter_config_test.cc b/test/extensions/filters/http/jwt_authn/filter_config_test.cc index 769cc6de7958c..1b9583ac3401e 100644 --- a/test/extensions/filters/http/jwt_authn/filter_config_test.cc +++ b/test/extensions/filters/http/jwt_authn/filter_config_test.cc @@ -9,7 +9,6 @@ #include "gmock/gmock.h" #include "gtest/gtest.h" -using ::envoy::api::v2::core::Metadata; using ::envoy::config::filter::http::jwt_authn::v2alpha::JwtAuthentication; namespace Envoy { diff --git a/test/extensions/filters/http/jwt_authn/filter_factory_test.cc b/test/extensions/filters/http/jwt_authn/filter_factory_test.cc index 212640a161d5a..6b5e5900f9c05 100644 --- a/test/extensions/filters/http/jwt_authn/filter_factory_test.cc +++ b/test/extensions/filters/http/jwt_authn/filter_factory_test.cc @@ -9,9 +9,7 @@ #include "gtest/gtest.h" using ::envoy::config::filter::http::jwt_authn::v2alpha::JwtAuthentication; -using ::envoy::config::filter::http::jwt_authn::v2alpha::JwtProvider; using testing::_; -using testing::Invoke; namespace Envoy { namespace Extensions { diff --git a/test/extensions/filters/http/jwt_authn/matcher_test.cc b/test/extensions/filters/http/jwt_authn/matcher_test.cc index 2e5e334a9120a..0ca3e6035089e 100644 --- a/test/extensions/filters/http/jwt_authn/matcher_test.cc +++ b/test/extensions/filters/http/jwt_authn/matcher_test.cc @@ -6,16 +6,8 @@ #include "test/extensions/filters/http/jwt_authn/test_common.h" #include "test/test_common/utility.h" -using ::envoy::api::v2::route::RouteMatch; -using ::envoy::config::filter::http::jwt_authn::v2alpha::JwtProvider; -using ::envoy::config::filter::http::jwt_authn::v2alpha::JwtRequirement; using ::envoy::config::filter::http::jwt_authn::v2alpha::RequirementRule; using Envoy::Http::TestHeaderMapImpl; -using ::testing::_; -using ::testing::Invoke; -using ::testing::NiceMock; - -using ::google::jwt_verify::Status; namespace Envoy { namespace Extensions {