]> source.dussan.org Git - redmine.git/commitdiff
Ruby 3.0: Fix `super` calls (#34992, #34986).
authorGo MAEDA <maeda@farend.jp>
Sat, 3 Apr 2021 09:01:53 +0000 (09:01 +0000)
committerGo MAEDA <maeda@farend.jp>
Sat, 3 Apr 2021 09:01:53 +0000 (09:01 +0000)
Patch by Pavel Rosický.

git-svn-id: http://svn.redmine.org/redmine/trunk@20912 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/models/issue.rb
app/models/journal.rb

index e5bb30e25344e1b2628529d25e53aef26cd5ffd2..09f8400cc74eb26f6c72ebcdf2bde64b97255e09 100644 (file)
@@ -219,7 +219,7 @@ class Issue < ActiveRecord::Base
   end
 
   def create_or_update(*args)
-    super
+    super()
   ensure
     @status_was = nil
   end
index 50cee4aec83ac94ffabb8fda9c49ae89214baf2f..a608703d7f948ca789302ffa94f0a723e3e514c9 100644 (file)
@@ -97,7 +97,7 @@ class Journal < ActiveRecord::Base
   def save(*args)
     journalize_changes
     # Do not save an empty journal
-    (details.empty? && notes.blank?) ? false : super
+    (details.empty? && notes.blank?) ? false : super()
   end
 
   # Returns journal details that are visible to user