aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/uri_parser.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/lib/action_controller/uri_parser.rb')
-rw-r--r--actionpack/lib/action_controller/uri_parser.rb9
1 files changed, 0 insertions, 9 deletions
diff --git a/actionpack/lib/action_controller/uri_parser.rb b/actionpack/lib/action_controller/uri_parser.rb
deleted file mode 100644
index 8e2a3f69eb..0000000000
--- a/actionpack/lib/action_controller/uri_parser.rb
+++ /dev/null
@@ -1,9 +0,0 @@
-require 'uri'
-
-module ActionController #:nodoc:
- module UriParser
- def uri_parser
- @uri_parser ||= URI.const_defined?(:Parser) ? URI::Parser.new : URI
- end
- end
-end