All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jruby.java.java_ext.java.net.rb Maven / Gradle / Ivy

There is a newer version: 9.4.9.0
Show newest version
class java::net::URL
  def open(*rest, &block)
    stream = openStream
    io = stream.to_io
    if block
      begin
        block.call(io)
      ensure
        stream.close
      end
    else
      io
    end
  end
end




© 2015 - 2025 Weber Informatics LLC | Privacy Policy