In the following piece of code, IDEA tells me, that the condition (reader 
!= null) in the finally block is always false. That isn't the case.

Tom

   BufferedReader reader = null;
   try {
     reader = new BufferedReader(new InputStreamReader(is));
     return reader.readLine();
   }
   finally {
     if (reader != null) {
       try {
         reader.close();
       }
       catch (IOException ex) {
         // ignore
       }
     }
   }


_______________________________________________
Eap-list mailing list
[EMAIL PROTECTED]
http://www.intellij.com/mailman/listinfo/eap-list

Reply via email to