@@ -333,8 +333,7 @@ void ExtractBindingsFromQueryParameters(
333
333
// - Strips off query string: "/a?foo=bar" --> "/a"
334
334
// - Collapses extra slashes: "///" --> "/"
335
335
std::vector<std::string> ExtractRequestParts (
336
- std::string path,
337
- const std::unordered_set<std::string>& custom_verbs) {
336
+ std::string path, const std::unordered_set<std::string>& custom_verbs) {
338
337
// Remove query parameters.
339
338
path = path.substr (0 , path.find_first_of (' ?' ));
340
339
@@ -407,7 +406,8 @@ Method PathMatcher<Method>::Lookup(
407
406
const std::string& query_params,
408
407
std::vector<VariableBinding>* variable_bindings,
409
408
std::string* body_field_path) const {
410
- const std::vector<std::string> parts = ExtractRequestParts (path, custom_verbs_);
409
+ const std::vector<std::string> parts =
410
+ ExtractRequestParts (path, custom_verbs_);
411
411
412
412
// If service_name has not been registered to ESP and strict_service_matching_
413
413
// is set to false, tries to lookup the method in all registered services.
@@ -439,7 +439,8 @@ Method PathMatcher<Method>::Lookup(
439
439
template <class Method >
440
440
Method PathMatcher<Method>::Lookup(const std::string& http_method,
441
441
const std::string& path) const {
442
- const std::vector<std::string> parts = ExtractRequestParts (path, custom_verbs_);
442
+ const std::vector<std::string> parts =
443
+ ExtractRequestParts (path, custom_verbs_);
443
444
444
445
// If service_name has not been registered to ESP and strict_service_matching_
445
446
// is set to false, tries to lookup the method in all registered services.
0 commit comments