8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa6b151 commit e710ee7Copy full SHA for e710ee7
junixsocket-selftest/src/main/java/org/newsclub/net/unix/selftest/Selftest.java
@@ -258,9 +258,9 @@ private static void printStackTrace(Throwable t) {
258
259
public static int runSelftest(Writer out) throws Exception {
260
PipedInputStream pis = new PipedInputStream();
261
- @SuppressWarnings("resource")
+ @SuppressWarnings("all")
262
PipedOutputStream pos = new PipedOutputStream(pis);
263
264
PrintStream ps = new PrintStream(pos, false, Charset.defaultCharset().name());
265
266
InputStreamReader isr = new InputStreamReader(pis, Charset.defaultCharset());
0 commit comments