Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4973040

Only in 1.4.2, javac output warning by default when "return' in finally block

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: P3 P3
    • None
    • 1.4.2_02
    • tools
    • generic
    • generic

      Only in 1.4.2(_0X), javac outputs the warning message when "return" is
      in finally block.

      The output message is as follows.

      --->
      goedel% javac FinallyTest.java
      FinallyTest.java:9: warning: finally clause cannot complete normally
              }
              ^
      1 warning
      goedel%
      <---

      REPRODUCE:
       To compile the java code.

      -->
      public class FinallyTest {
          public static void main(String[] args) {
              try {
                  System.out.println("FinnalyTest");
                  return;
              } finally {
                  System.out.println("FinnalyTest finally");
                  return;
              }
          }
      }
      <--

      ======================================================================

            gafter Neal Gafter (Inactive)
            tbaba Tadayuki Baba (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: