diff options
author | Dmitry Kim <dmitry point kim at gmail point com> | 2007-03-29 22:32:44 +0000 |
---|---|---|
committer | Dmitry Kim <dmitry point kim at gmail point com> | 2007-03-29 22:32:44 +0000 |
commit | 0cc4178d6abf048c81b886420a9a26cf11828afe (patch) | |
tree | 6840cfe584e8d2a39cf08a132ed3a2fe5ac0185f /data | |
parent | f21572a12c521bf244ca230991e830872754341c (diff) |
* (rss.rb) we didn't really mean to create a Mutex inner class, right?
Diffstat (limited to 'data')
-rw-r--r-- | data/rbot/plugins/rss.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/rbot/plugins/rss.rb b/data/rbot/plugins/rss.rb index f02e6307..15b121b7 100644 --- a/data/rbot/plugins/rss.rb +++ b/data/rbot/plugins/rss.rb @@ -134,7 +134,7 @@ class RSSFeedsPlugin < Plugin # #marshal_load() method for Mutex. For 1.8.5 => 1.8.6 we need something
# dirtier, as seen later on in the initialization code.
unless Mutex.new.respond_to?(:marshal_load)
- class Mutex
+ class ::Mutex
def marshal_load(str)
return
end
|