Sha256: 301db2b3d3c38e68a77404390e99c55688844eb41621cbaf467ce1235790a1c3

Contents?: true

Size: 346 Bytes

Versions: 1

Compression:

Stored size: 346 Bytes

Contents

# frozen_string_literal: true

module PuppetLanguageServerSidecar
  module Cache
    class Null < Base
      def initialize(options = {})
        super
      end

      def active?
        false
      end

      def load(*)
        nil
      end

      def save(*)
        true
      end

      def clear!
        nil
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
puppet-editor-services-2.0.4 lib/puppet-languageserver-sidecar/cache/null.rb