]> git.openstreetmap.org Git - rails.git/blobdiff - lib/redactable.rb
Localisation updates from https://translatewiki.net.
[rails.git] / lib / redactable.rb
index a42164ec733dfc2006f361f919940c86a2cc9918..6adfec72a6aa1d0e8c1b039b16825a2843c09615 100644 (file)
@@ -13,10 +13,10 @@ module Redactable
 
   def redact!(redaction)
     # check that this version isn't the current version
-    fail OSM::APICannotRedactError.new if self.is_latest_version?
+    raise OSM::APICannotRedactError.new if is_latest_version?
 
     # make the change
     self.redaction = redaction
-    self.save!
+    save!
   end
 end