# File lib/openid/store/filesystem.rb, line 255 def remove_if_present(filename) begin File.unlink(filename) rescue Errno::ENOENT return false end return true end