8264779: Fix doclint warnings in java/nio

Reviewed-by: chegar, iris, alanb, naoto
This commit is contained in:
Conor Cleary 2021-04-09 08:50:33 +00:00 committed by Chris Hegarty
parent 3e57924a6e
commit a45733f840
9 changed files with 48 additions and 10 deletions

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2019, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2021, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -39,7 +39,15 @@ public class InvalidPathException
@java.io.Serial
static final long serialVersionUID = 4355821422286746137L;
/**
* The input string.
*/
private String input;
/**
* The index of the input string at which the error occurred or
* {@code -1} if not known.
*/
private int index;
/**