summaryrefslogtreecommitdiff
path: root/lib/coderay/helpers/file_type.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/coderay/helpers/file_type.rb')
-rw-r--r--lib/coderay/helpers/file_type.rb1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/coderay/helpers/file_type.rb b/lib/coderay/helpers/file_type.rb
index e8a7b75..5e3a1e7 100644
--- a/lib/coderay/helpers/file_type.rb
+++ b/lib/coderay/helpers/file_type.rb
@@ -68,7 +68,6 @@ module CodeRay
File.open filename, 'r' do |f|
if first_line = f.gets
if type = first_line[TypeFromShebang]
- # FIXME: cache attack
type.to_sym
end
end