summaryrefslogtreecommitdiffstats
path: root/app
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2019-09-20 15:03:48 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2019-09-20 15:03:48 +0000
commitd6701ab40f41bacc52f790a44c8b7fa798ddb1dc (patch)
tree32cdb886dcc368cb8ab5253d4f05c1055e6b4d2a /app
parent3be589df241c0df0645bdcc830b66789420d6e5b (diff)
downloadredmine-d6701ab40f41bacc52f790a44c8b7fa798ddb1dc.tar.gz
redmine-d6701ab40f41bacc52f790a44c8b7fa798ddb1dc.zip
remove "attr_reader :current_journal" from Issue class
Issue#current_journal is already defined in Issue class. git-svn-id: http://svn.redmine.org/redmine/trunk@18488 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app')
-rw-r--r--app/models/issue.rb1
1 files changed, 0 insertions, 1 deletions
diff --git a/app/models/issue.rb b/app/models/issue.rb
index 9ac09f44a..437e585a4 100644
--- a/app/models/issue.rb
+++ b/app/models/issue.rb
@@ -57,7 +57,6 @@ class Issue < ActiveRecord::Base
DONE_RATIO_OPTIONS = %w(issue_field issue_status)
attr_writer :deleted_attachment_ids
- attr_reader :current_journal
delegate :notes, :notes=, :private_notes, :private_notes=, :to => :current_journal, :allow_nil => true
validates_presence_of :subject, :project, :tracker