Re: OpenJDK JDK-7067885 code changes for community review

2016-09-28 Thread Sharma, Alok Kumar (OSTL)
Scherbatiy [mailto:alexandr.scherba...@oracle.com] Sent: Tuesday, September 20, 2016 8:19 PM To: Sharma, Alok Kumar (OSTL) Cc: swing-dev@openjdk.java.net Subject: Re: OpenJDK JDK-7067885 code changes for community review Hello Alok, Is it possible to update the line where File.exists() is

Re: OpenJDK JDK-7067885 code changes for community review

2016-09-20 Thread Alexandr Scherbatiy
Hello Alok, Is it possible to update the line where File.exists() is used just converting the file to a Path and using java.nio.exists() check? Thanks, Alexandr. On 9/16/2016 1:20 PM, Alexey Ivanov wrote: Hi Alok, This change should be discussed on swing-dev mailing list because you

Re: OpenJDK JDK-7067885 code changes for community review

2016-09-16 Thread Alexey Ivanov
Hi Alok, This change should be discussed on swing-dev mailing list because you modify behavior of javax.swing.JFileChooser, and on core-libs-dev because you also modify java.io.File. I agree with Alan, using the new API appears to be a better alternative than changing java.io.File. Regard