diff options
author | hut <hut@lavabit.com> | 2009-06-12 19:20:56 +0200 |
---|---|---|
committer | hut <hut@lavabit.com> | 2009-06-12 19:20:56 +0200 |
commit | 100cc62188b31740d6c6e82cefa7a60db7defec6 (patch) | |
tree | ba40132166c06d5b73942563f964c5a1127bbcc8 | |
parent | 18deedbcb0fd611038c0c4db9b5c748941f75c29 (diff) | |
download | ranger-100cc62188b31740d6c6e82cefa7a60db7defec6.tar.gz |
removed void class, it was only there for debugging
-rw-r--r-- | code/fm/fm.rb | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/code/fm/fm.rb b/code/fm/fm.rb index e5370c20..5033c161 100644 --- a/code/fm/fm.rb +++ b/code/fm/fm.rb @@ -7,18 +7,6 @@ OPTIONS = { 'filepreview' => true, } -class Void - oldv, $-v = $-v, nil - - for method in instance_methods - remove_method(method) rescue nil - end - - def self.method_missing(*a) end - - $-v = oldv -end - module Fm extend self COPY_PRIORITY = -2 |