mirror of
https://github.com/ruby/ruby.git
synced 2025-09-22 03:53:58 +02:00

implementation of `cleanup`. * ext/openssl/lib/openssl/x509.rb: adding ruby implementation of `cleanup`. OpenSSL::X509::StoreContext#cleanup is deprecated since reusing the underlying struct doesn't make sense. [ruby-dev:42546] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30152 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
9 lines
213 B
Ruby
9 lines
213 B
Ruby
module OpenSSL
|
|
module X509
|
|
class StoreContext
|
|
def cleanup
|
|
warn "(#{caller.first}) OpenSSL::X509::StoreContext#cleanup is deprecated with no replacement" if $VERBOSE
|
|
end
|
|
end
|
|
end
|
|
end
|