Re: RFR: [15,docs] JDK-8248061,bad reference in @throws in HotSpotDiagnosticMXBean

2020-06-22 Thread Mandy Chung
+1 Mandy On 6/22/20 4:55 PM, Jonathan Gibbons wrote: Please review a small change to fix an unresolved reference in `@throws IOException`. The problem is that the method signature uses a fully-qualified name for `java.io.IOException` instead of importing it. meaning that the `@throws`

Re: RFR: [15,docs] JDK-8248061,bad reference in @throws in HotSpotDiagnosticMXBean

2020-06-22 Thread serguei.spit...@oracle.com
+1 Thanks, Serguei On 6/22/20 19:32, Daniel D. Daugherty wrote: On 6/22/20 7:55 PM, Jonathan Gibbons wrote: Please review a small change to fix an unresolved reference in `@throws IOException`.  

Re: RFR: [15,docs] JDK-8248061,bad reference in @throws in HotSpotDiagnosticMXBean

2020-06-22 Thread Daniel D. Daugherty
On 6/22/20 7:55 PM, Jonathan Gibbons wrote: Please review a small change to fix an unresolved reference in `@throws IOException`. Thumbs up. Dan The problem is that the method signature uses a fully-qualified name for `java.io.IOException` instead of importing it. meaning that the

RFR: [15,docs] JDK-8248061,bad reference in @throws in HotSpotDiagnosticMXBean

2020-06-22 Thread Jonathan Gibbons
Please review a small change to fix an unresolved reference in `@throws IOException`. The problem is that the method signature uses a fully-qualified name for `java.io.IOException` instead of importing it. meaning that the `@throws` cannot resolve the name. Although this could be fixed by