# File lib/licensee/matchers/dice_matcher.rb, line 23
      def potential_licenses
        @potential_licenses ||= begin
          Licensee.licenses(hidden: true).select do |license|
            license.wordset && license.length_delta(file) <= license.max_delta
          end
        end
      end