summaryrefslogtreecommitdiff
path: root/parse.y
diff options
context:
space:
mode:
authorKazuki Tsujimoto <kazuki@callcc.net>2022-02-19 18:45:49 +0900
committerKazuki Tsujimoto <kazuki@callcc.net>2022-02-19 18:45:49 +0900
commitdb6b23c76cbc7888cd9a9912790c2068703afdd0 (patch)
tree0730de840fbcacb2b2c24fb368b6647d69cefe70 /parse.y
parent3200d97e95e5d84483b3df46dc54448a82820b9d (diff)
Find pattern is no longer experimental [Feature #18585]
Diffstat (limited to 'parse.y')
-rw-r--r--parse.y3
1 files changed, 0 insertions, 3 deletions
diff --git a/parse.y b/parse.y
index 0d2ccaaf03..41a09e79fe 100644
--- a/parse.y
+++ b/parse.y
@@ -4356,9 +4356,6 @@ p_args_tail : p_rest
p_find : p_rest ',' p_args_post ',' p_rest
{
$$ = new_find_pattern_tail(p, $1, $3, $5, &@$);
-
- if (rb_warning_category_enabled_p(RB_WARN_CATEGORY_EXPERIMENTAL))
- rb_warn0L_experimental(nd_line($$), "Find pattern is experimental, and the behavior may change in future versions of Ruby!");
}
;