You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

EmptyCatch.java 193B

1234567891011121314
  1. package test3;
  2. public class EmptyCatch {
  3. public int test(int i) {
  4. try {
  5. i += 200;
  6. }
  7. finally {
  8. i += 10;
  9. }
  10. return i;
  11. }
  12. }