Re: RFR: JDK-8277375: jdeps errors on a class path with a file path with no permission

2021-12-01 Thread Michael Hall
> On Nov 29, 2021, at 1:14 PM, Mandy Chung wrote: > > On Wed, 24 Nov 2021 12:32:32 GMT, Michael Hall wrote: > >> Would there be any need to scan class path at all? That would mean a module >> would have a class path dependency wouldn't it? > > One reason of scanning the class path is to

Re: RFR: JDK-8277375: jdeps errors on a class path with a file path with no permission

2021-11-29 Thread Mandy Chung
On Wed, 24 Nov 2021 12:32:32 GMT, Michael Hall wrote: > Would there be any need to scan class path at all? That would mean a module > would have a class path dependency wouldn't it? One reason of scanning the class path is to detect any split packages and emit warnings. > Yes, I shouldn't

Re: RFR: JDK-8277375: jdeps errors on a class path with a file path with no permission

2021-11-24 Thread Michael Hall
> On Nov 24, 2021, at 5:51 AM, Michael Hall wrote: > > > >> On Nov 24, 2021, at 2:55 AM, Alan Bateman wrote: >> >> On Wed, 24 Nov 2021 01:12:01 GMT, Mandy Chung wrote: >> >>> This changes jdeps -cp to ignore files/directories with no permission to >>> access. This is consistent with

Re: RFR: JDK-8277375: jdeps errors on a class path with a file path with no permission

2021-11-24 Thread Michael Hall
> On Nov 24, 2021, at 2:55 AM, Alan Bateman wrote: > > On Wed, 24 Nov 2021 01:12:01 GMT, Mandy Chung wrote: > >> This changes jdeps -cp to ignore files/directories with no permission to >> access. This is consistent with the runtime behavior. > >

Re: RFR: JDK-8277375: jdeps errors on a class path with a file path with no permission

2021-11-24 Thread Alan Bateman
On Wed, 24 Nov 2021 01:12:01 GMT, Mandy Chung wrote: > This changes jdeps -cp to ignore files/directories with no permission to > access. This is consistent with the runtime behavior. src/jdk.jdeps/share/classes/com/sun/tools/jdeps/ClassFileReader.java line 235: > 233:

Re: RFR: JDK-8277375: jdeps errors on a class path with a file path with no permission

2021-11-23 Thread Michael Hall
> On Nov 23, 2021, at 7:19 PM, Mandy Chung wrote: > > This changes jdeps -cp to ignore files/directories with no permission to > access. This is consistent with the runtime behavior. > > - > > Commit messages: > - JDK-8277375: jdeps errors on a class path with a file path with

RFR: JDK-8277375: jdeps errors on a class path with a file path with no permission

2021-11-23 Thread Mandy Chung
This changes jdeps -cp to ignore files/directories with no permission to access. This is consistent with the runtime behavior. - Commit messages: - JDK-8277375: jdeps errors on a class path with a file path with no permission Changes: