class Covered::Persist

def load!(path = @path)

def load!(path = @path)
	return unless File.exist?(@path)
	
	# Load existing coverage information and mark all files:
	File.open(@path, "r") do |file|
		file.flock(File::LOCK_SH)
		
		make_unpacker(file).each(&self.method(:apply))
	end
end