]> git.openstreetmap.org Git - rails.git/blobdiff - lib/redactable.rb
Update Potlatch 2 to 2.5-21-gec1befed build
[rails.git] / lib / redactable.rb
index a42164ec733dfc2006f361f919940c86a2cc9918..d827cfd7462aa318a11c4754434ccd311dab4a7f 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 if is_latest_version?
 
     # make the change
     self.redaction = redaction
-    self.save!
+    save!
   end
 end