From 75e4394d720c9cf8039a5e07110322c2b55bce8c Mon Sep 17 00:00:00 2001 From: gcontini <1121667+gcontini@users.noreply.github.com> Date: 周日, 08 3月 2020 21:45:16 +0800 Subject: [PATCH] Merge branch 'feature/pc_identifiers' of https://github.com/open-license-manager/open-license-manager.git into feature/pc_identifiers --- src/library/locate/ExternalDefinition.hpp | 5 ++--- 1 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/library/locate/ExternalDefinition.hpp b/src/library/locate/ExternalDefinition.hpp index c70775a..7ffa9ae 100644 --- a/src/library/locate/ExternalDefinition.hpp +++ b/src/library/locate/ExternalDefinition.hpp @@ -16,11 +16,10 @@ class ExternalDefinition: public LocatorStrategy { private: const LicenseLocation* m_location; - bool licenseDataIsBase64 = false; public: ExternalDefinition(const LicenseLocation* location); - virtual const std::vector<std::string> license_locations(EventRegistry& eventRegistry); - virtual const std::string retrieve_license_content(const std::string &licenseLocation) const; + const virtual std::vector<std::string> license_locations(EventRegistry& eventRegistry); + const virtual std::string retrieve_license_content(const std::string& licenseLocation) const; virtual ~ExternalDefinition(); }; -- Gitblit v1.9.1