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