# File lib/openid/filestore.rb, line 161
    def removeAssociation(server_url, handle)
      assoc = getAssociation(server_url)
      if assoc.nil? or assoc.handle != handle
        false
      else
        filename = getAssociationFilename(server_url)
        self.removeIfPresent(filename)
      end
    end