提交 879918b5 编写于 作者: U utilum

Fix variable not initialized warnings

```
activesupport/test/concern_test.rb:20: warning: instance variable
@included_ran not initialized

activesupport/test/concern_test.rb:28: warning: instance variable
@prepended_ran not initialized
```
上级 20f4a2fc
......@@ -8,25 +8,11 @@ module Baz
extend ActiveSupport::Concern
class_methods do
attr_accessor :included_ran, :prepended_ran
def baz
"baz"
end
def included_ran=(value)
@included_ran = value
end
def included_ran
@included_ran
end
def prepended_ran=(value)
@prepended_ran = value
end
def prepended_ran
@prepended_ran
end
end
included do
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册