File tree 2 files changed +4
-8
lines changed
2 files changed +4
-8
lines changed Original file line number Diff line number Diff line change
1
+ * Remove deprecated ` ActionDispatch::Http::Parameters#symbolized_path_parameters ` .
2
+
3
+ * Rafael Mendonça França*
4
+
1
5
* Remove deprecated option ` use_route ` in controller tests.
2
6
3
7
* Rafael Mendonça França*
Original file line number Diff line number Diff line change 1
1
require 'active_support/core_ext/hash/keys'
2
2
require 'active_support/core_ext/hash/indifferent_access'
3
- require 'active_support/deprecation'
4
3
5
4
module ActionDispatch
6
5
module Http
@@ -25,13 +24,6 @@ def path_parameters=(parameters) #:nodoc:
25
24
@env [ PARAMETERS_KEY ] = parameters
26
25
end
27
26
28
- def symbolized_path_parameters
29
- ActiveSupport ::Deprecation . warn (
30
- '`symbolized_path_parameters` is deprecated. Please use `path_parameters`.'
31
- )
32
- path_parameters
33
- end
34
-
35
27
# Returns a hash with the \parameters used to form the \path of the request.
36
28
# Returned hash keys are strings:
37
29
#
You can’t perform that action at this time.
0 commit comments