1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Remove unused variable to suppress warning (#2388) [ci skip]

```
sample/observ.rb:30: warning: assigned but unused variable - clock
```
This commit is contained in:
Kenichi Kamiya 2019-08-19 18:16:45 +09:00 committed by Takashi Kokubun
parent 97c377e2b1
commit 9b330200f8

View file

@ -27,5 +27,5 @@ class Clock
end
end
clock = Clock.new(Tick.new)
Clock.new(Tick.new)
sleep