# File lib/countries/sources/local/cached_loader.rb, line 14
      def load(country_code)
        if (data = from_cache(country_code))
          data
        else
          @loaded_countries[country_code] = klass.load(country_code)
        end
      end