RE: RFR (T): 8243117: Cleanups in Java code of module jdk.jlink

2020-04-21 Thread Langer, Christoph
Hi Alan, > >> Looks okay to me too, except @SuppressWarnings("unused") looks > strange, > >> is that an Eclipse compiler warning name? > > Yes, it comes from Eclipse, probably only used by its compiler. The private > field EXIT_SYSERR doesn't seem to be used. Alternatively, I could comment it >

Re: RFR (T): 8243117: Cleanups in Java code of module jdk.jlink

2020-04-20 Thread Alan Bateman
On 19/04/2020 20:08, Langer, Christoph wrote: Hi Alan, Looks okay to me too, except @SuppressWarnings("unused") looks strange, is that an Eclipse compiler warning name? Yes, it comes from Eclipse, probably only used by its compiler. The private field EXIT_SYSERR doesn't seem to be used.

RE: RFR (T): 8243117: Cleanups in Java code of module jdk.jlink

2020-04-19 Thread Langer, Christoph
Hi Alan, > Looks okay to me too, except @SuppressWarnings("unused") looks strange, > is that an Eclipse compiler warning name? Yes, it comes from Eclipse, probably only used by its compiler. The private field EXIT_SYSERR doesn't seem to be used. Alternatively, I could comment it out? Or remove

RE: RFR (T): 8243117: Cleanups in Java code of module jdk.jlink

2020-04-19 Thread Langer, Christoph
nntag, 19. April 2020 18:32 > To: Langer, Christoph ; jigsaw- > d...@openjdk.java.net > Cc: core-libs-...@openjdk.java.net > Subject: Re: RFR (T): 8243117: Cleanups in Java code of module jdk.jlink > > Looks good to me, Christoph, > > JmodTask.java: Not sure what the co

Re: RFR (T): 8243117: Cleanups in Java code of module jdk.jlink

2020-04-19 Thread Alan Bateman
On 19/04/2020 17:31, Claes Redestad wrote: Looks good to me, Christoph, JmodTask.java: Not sure what the consensus is about wildcard imports, but I'm fine with it here. Looks okay to me too, except @SuppressWarnings("unused") looks strange, is that an Eclipse compiler warning name? -Alan

Re: RFR (T): 8243117: Cleanups in Java code of module jdk.jlink

2020-04-19 Thread Claes Redestad
Looks good to me, Christoph, JmodTask.java: Not sure what the consensus is about wildcard imports, but I'm fine with it here. /Claes On 2020-04-19 17:32, Langer, Christoph wrote: Hi, please help review this cleanup patch for the Java code in module jdk.jlink. It's mostly automatic IDE

RFR (T): 8243117: Cleanups in Java code of module jdk.jlink

2020-04-19 Thread Langer, Christoph
Hi, please help review this cleanup patch for the Java code in module jdk.jlink. It's mostly automatic IDE cleanups of unused imports plus a few removals for unused private methods, fields and annotations. I've also added some @Override annotations where such were missing. Bug: