summary refs log tree commit diff stats
path: root/code
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2009-06-12 19:20:56 +0200
committerhut <hut@lavabit.com>2009-06-12 19:20:56 +0200
commit100cc62188b31740d6c6e82cefa7a60db7defec6 (patch)
treeba40132166c06d5b73942563f964c5a1127bbcc8 /code
parent18deedbcb0fd611038c0c4db9b5c748941f75c29 (diff)
downloadranger-100cc62188b31740d6c6e82cefa7a60db7defec6.tar.gz
removed void class, it was only there for debugging
Diffstat (limited to 'code')
-rw-r--r--code/fm/fm.rb12
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
'n153' href='#n153'>153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192