summaryrefslogtreecommitdiffhomepage
path: root/mrbgems
diff options
context:
space:
mode:
authorKOBAYASHI Shuji <[email protected]>2019-01-24 20:44:55 +0900
committerKOBAYASHI Shuji <[email protected]>2019-01-24 20:44:55 +0900
commit1d6679e9d13078b279b81a1241e632540672524c (patch)
treed92ab57230887992a2ad9be84e4254794ddde920 /mrbgems
parent5956f5b4e8a986a8aedb71a2692be87645abee02 (diff)
downloadmruby-1d6679e9d13078b279b81a1241e632540672524c.tar.gz
mruby-1d6679e9d13078b279b81a1241e632540672524c.zip
Remove definition of `Kernel#sprintf` in `mruby-print`
Diffstat (limited to 'mrbgems')
-rw-r--r--mrbgems/mruby-print/mrblib/print.rb3
1 files changed, 0 insertions, 3 deletions
diff --git a/mrbgems/mruby-print/mrblib/print.rb b/mrbgems/mruby-print/mrblib/print.rb
index fa83c47de..27567d858 100644
--- a/mrbgems/mruby-print/mrblib/print.rb
+++ b/mrbgems/mruby-print/mrblib/print.rb
@@ -52,9 +52,6 @@ module Kernel
def printf(*args)
raise NotImplementedError.new('printf not available')
end
- def sprintf(*args)
- raise NotImplementedError.new('sprintf not available')
- end
else
def printf(*args)
__printstr__(sprintf(*args))