8253100: Fix "no comment" warnings in java.base/java.net

Reviewed-by: ryadav, chegar, naoto, alanb
This commit is contained in:
Daniel Fuchs 2021-03-02 12:54:54 +00:00
parent d185a6c53e
commit 5f4bc0aca6
10 changed files with 135 additions and 34 deletions

View file

@ -41,7 +41,15 @@ public class URISyntaxException
@java.io.Serial
private static final long serialVersionUID = 2137979680897488891L;
/**
* The input string.
*/
private String input;
/**
* The index at which the parse error occurred,
* or {@code -1} if the index is not known.
*/
private int index;
/**