mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-27 13:50:53 +07:00
9 lines
186 B
Java
9 lines
186 B
Java
import java.io.*;
|
|
import java.net.*;
|
|
|
|
class C {
|
|
public void read(URLConnection connection) {
|
|
try (InputStream stream = connection.getInputStream()) {<caret>
|
|
}
|
|
}
|
|
} |