Files
2023-08-24 15:59:36 +00:00

7 lines
185 B
Java

// "Suppress for method" "true"
import java.io.IOException;
class a implements Runnable {
/** @noinspection RedundantThrowsDeclaration*/
public void run() throws <caret>IOException{
}
}