8300863: Remove C-style array declarations in java.io

Reviewed-by: alanb, rriggs, darcy, iris
This commit is contained in:
Per Minborg 2023-01-24 07:43:29 +00:00
parent 2292ce137c
commit 57f2d48e1e
8 changed files with 19 additions and 19 deletions

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 1996, 2021, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1996, 2023, 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
@ -54,7 +54,7 @@ public class PipedReader extends Reader {
/**
* The circular buffer into which incoming data is placed.
*/
char buffer[];
char[] buffer;
/**
* The index of the position in the circular buffer at which the
@ -100,7 +100,6 @@ public class PipedReader extends Reader {
connect(src);
}
/**
* Creates a {@code PipedReader} so
* that it is not yet {@linkplain #connect(java.io.PipedWriter)