def redact!(redaction)
# check that this version isn't the current version
- fail OSM::APICannotRedactError.new if self.is_latest_version?
+ raise OSM::APICannotRedactError if is_latest_version?
# make the change
self.redaction = redaction
- self.save!
+ save!
end
end