java ignore catch

48

java ignore catch -

//IntelliJ Idea IDE suggests to rename a variable to ignored when it's not used
try {
 // Your code...
} catch (Exception ignore) { }

Comments

Submit
0 Comments