summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-ruby/activesupport/files/clean_logger-format_message-fix.patch')
-rw-r--r--dev-ruby/activesupport/files/clean_logger-format_message-fix.patch16
1 files changed, 0 insertions, 16 deletions
diff --git a/dev-ruby/activesupport/files/clean_logger-format_message-fix.patch b/dev-ruby/activesupport/files/clean_logger-format_message-fix.patch
deleted file mode 100644
index 0c8bfdf939d4..000000000000
--- a/dev-ruby/activesupport/files/clean_logger-format_message-fix.patch
+++ /dev/null
@@ -1,16 +0,0 @@
---- activesupport-1.1.1/lib/active_support/clean_logger.rb.orig 2005-10-19 18:18:09.000000000 -0400
-+++ activesupport-1.1.1/lib/active_support/clean_logger.rb 2005-10-19 18:07:00.000000000 -0400
-@@ -10,9 +10,11 @@
- end
-
- private
-- remove_const "Format"
-+ if const_defined?(:Format) # Not defined in Ruby 1.8.3
-+ remove_const "Format"
-+ end
- Format = "%s\n"
-- def format_message(severity, timestamp, msg, progname)
-+ def format_message(severity, timestamp, progname, msg)
- Format % [msg]
- end
- end