summaryrefslogtreecommitdiff
path: root/lib/csv/input_record_separator.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/csv/input_record_separator.rb')
-rw-r--r--lib/csv/input_record_separator.rb18
1 files changed, 0 insertions, 18 deletions
diff --git a/lib/csv/input_record_separator.rb b/lib/csv/input_record_separator.rb
deleted file mode 100644
index 7a99343c0c..0000000000
--- a/lib/csv/input_record_separator.rb
+++ /dev/null
@@ -1,18 +0,0 @@
-require "English"
-require "stringio"
-
-class CSV
- module InputRecordSeparator
- class << self
- if RUBY_VERSION >= "3.0.0"
- def value
- "\n"
- end
- else
- def value
- $INPUT_RECORD_SEPARATOR
- end
- end
- end
- end
-end