# File lib/openid/filestore.rb, line 187
    def remove_association(server_url, handle)
      assoc = get_association(server_url, handle)
      
      if assoc.nil?
        return false
      else
        filename = get_association_filename(server_url, handle)
        return self.remove_if_present(filename)
      end
    end