Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mruby
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
mruby
Commits
6b839308
Unverified
Commit
6b839308
authored
Feb 20, 2021
by
Yukihiro "Matz" Matsumoto
Committed by
GitHub
Feb 20, 2021
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #5359 from dearblue/warn
Comment out `warn` used in the `Array#fetch` method
parents
0d7f5b82
7ef4e543
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
mrbgems/mruby-array-ext/mrblib/array.rb
mrbgems/mruby-array-ext/mrblib/array.rb
+1
-1
No files found.
mrbgems/mruby-array-ext/mrblib/array.rb
View file @
6b839308
...
...
@@ -325,7 +325,7 @@ class Array
#
def
fetch
(
n
,
ifnone
=
NONE
,
&
block
)
warn
"block supersedes default value argument"
if
!
n
.
nil?
&&
ifnone
!=
NONE
&&
block
#
warn "block supersedes default value argument" if !n.nil? && ifnone != NONE && block
idx
=
n
if
idx
<
0
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment