mruby-set: make Set#initialize_copy private

This commit is contained in:
Yukihiro "Matz" Matsumoto
2025-06-16 12:41:54 +09:00
parent 0a306b81ed
commit 10c40c4e87
+1 -1
View File
@@ -31,7 +31,7 @@ class Set
end
end
def initialize_copy(orig)
private def initialize_copy(orig)
super
@hash = orig.__get_hash.dup
end