mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* lib/rss/rss.rb (RSS::BaseModel): Remove needless codes.
[Bug #12773][ruby-dev:49813] Reported by Kazuhiro NISHIYAMA. Thanks!!! git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56184 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
2c2a111ecf
commit
671e1d890a
2 changed files with 6 additions and 6 deletions
|
@ -1,3 +1,9 @@
|
|||
Sun Sep 18 22:48:54 2016 Kouhei Sutou <kou@cozmixng.org>
|
||||
|
||||
* lib/rss/rss.rb (RSS::BaseModel): Remove needless codes.
|
||||
[Bug #12773][ruby-dev:49813]
|
||||
Reported by Kazuhiro NISHIYAMA. Thanks!!!
|
||||
|
||||
Sun Sep 18 19:23:47 2016 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
|
||||
|
||||
* lib/sync.rb: Fix NameError when error.
|
||||
|
|
|
@ -326,7 +326,6 @@ EOC
|
|||
|
||||
def inherit_convert_attr_reader(*attrs)
|
||||
attrs.each do |attr|
|
||||
attr = attr.id2name if attr.kind_of?(Integer)
|
||||
module_eval(<<-EOC, *get_file_and_line_from_caller(2))
|
||||
def #{attr}_without_inherit
|
||||
convert(@#{attr})
|
||||
|
@ -347,7 +346,6 @@ EOC
|
|||
|
||||
def uri_convert_attr_reader(*attrs)
|
||||
attrs.each do |attr|
|
||||
attr = attr.id2name if attr.kind_of?(Integer)
|
||||
module_eval(<<-EOC, *get_file_and_line_from_caller(2))
|
||||
def #{attr}_without_base
|
||||
convert(@#{attr})
|
||||
|
@ -368,7 +366,6 @@ EOC
|
|||
|
||||
def convert_attr_reader(*attrs)
|
||||
attrs.each do |attr|
|
||||
attr = attr.id2name if attr.kind_of?(Integer)
|
||||
module_eval(<<-EOC, *get_file_and_line_from_caller(2))
|
||||
def #{attr}
|
||||
convert(@#{attr})
|
||||
|
@ -379,7 +376,6 @@ EOC
|
|||
|
||||
def yes_clean_other_attr_reader(*attrs)
|
||||
attrs.each do |attr|
|
||||
attr = attr.id2name if attr.kind_of?(Integer)
|
||||
module_eval(<<-EOC, __FILE__, __LINE__ + 1)
|
||||
attr_reader(:#{attr})
|
||||
def #{attr}?
|
||||
|
@ -391,7 +387,6 @@ EOC
|
|||
|
||||
def yes_other_attr_reader(*attrs)
|
||||
attrs.each do |attr|
|
||||
attr = attr.id2name if attr.kind_of?(Integer)
|
||||
module_eval(<<-EOC, __FILE__, __LINE__ + 1)
|
||||
attr_reader(:#{attr})
|
||||
def #{attr}?
|
||||
|
@ -409,7 +404,6 @@ EOC
|
|||
end
|
||||
separator ||= ", "
|
||||
attrs.each do |attr|
|
||||
attr = attr.id2name if attr.kind_of?(Integer)
|
||||
module_eval(<<-EOC, __FILE__, __LINE__ + 1)
|
||||
attr_reader(:#{attr})
|
||||
def #{attr}_content
|
||||
|
|
Loading…
Reference in a new issue