Removed unnecessary 'using' statement in master HTTP code. `MetricsProcess` was previously declared in 'src/master/http.cpp', but it is not currently used in that file. This patch removes the declaration.
Review: https://reviews.apache.org/r/57153/ Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/dc202578 Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/dc202578 Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/dc202578 Branch: refs/heads/master Commit: dc202578a6ba8dd096a1f0a6ad9f3af4d6247819 Parents: 30cbe95 Author: Greg Mann <[email protected]> Authored: Mon Mar 6 12:39:20 2017 -0800 Committer: Vinod Kone <[email protected]> Committed: Mon Mar 6 12:39:20 2017 -0800 ---------------------------------------------------------------------- src/master/http.cpp | 2 -- 1 file changed, 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/mesos/blob/dc202578/src/master/http.cpp ---------------------------------------------------------------------- diff --git a/src/master/http.cpp b/src/master/http.cpp index 3bc4f0b..b0b73e3 100644 --- a/src/master/http.cpp +++ b/src/master/http.cpp @@ -112,8 +112,6 @@ using process::http::TemporaryRedirect; using process::http::UnsupportedMediaType; using process::http::URL; -using process::metrics::internal::MetricsProcess; - using std::copy_if; using std::list; using std::map;
