aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/lib/action_view/record_identifier.rb
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2018-10-01 10:08:51 +0900
committerGitHub <noreply@github.com>2018-10-01 10:08:51 +0900
commitb13a5cb83ea00d6a3d71320fd276ca21049c2544 (patch)
treef571491d2bfe23944cdda8b25ffb62cab18c6522 /actionview/lib/action_view/record_identifier.rb
parentb707a6d0eb7a694595152c5ca18f1e72e0bc2f7e (diff)
parentaa3dcabd874a3e82e455e85a1c94a7abaac2900a (diff)
downloadrails-b13a5cb83ea00d6a3d71320fd276ca21049c2544.tar.gz
rails-b13a5cb83ea00d6a3d71320fd276ca21049c2544.tar.bz2
rails-b13a5cb83ea00d6a3d71320fd276ca21049c2544.zip
Merge pull request #32031 from yahonda/remove_redundant_freeze
Add `Style/RedundantFreeze` to remove redudant `.freeze`
Diffstat (limited to 'actionview/lib/action_view/record_identifier.rb')
-rw-r--r--actionview/lib/action_view/record_identifier.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/actionview/lib/action_view/record_identifier.rb b/actionview/lib/action_view/record_identifier.rb
index 1310a1ce0a..ee39b6050d 100644
--- a/actionview/lib/action_view/record_identifier.rb
+++ b/actionview/lib/action_view/record_identifier.rb
@@ -59,8 +59,8 @@ module ActionView
include ModelNaming
- JOIN = "_".freeze
- NEW = "new".freeze
+ JOIN = "_"
+ NEW = "new"
# The DOM class convention is to use the singular form of an object or class.
#