OpenJDK / jdk / jdk10
changeset 21624:2648e47a6654
8024458: DataInput.readDouble refers to "readlong" instead of "readLong"
Summary: fix the typo
Reviewed-by: lancea, chegar, dxu
author | rriggs |
---|---|
date | Thu, 07 Nov 2013 20:56:44 -0500 |
parents | e88796f62a8e |
children | 43b5aaf791aa |
files | jdk/src/share/classes/java/io/DataInput.java |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/jdk/src/share/classes/java/io/DataInput.java Thu Nov 07 10:03:38 2013 -0800 +++ b/jdk/src/share/classes/java/io/DataInput.java Thu Nov 07 20:56:44 2013 -0500 @@ -444,7 +444,7 @@ * a {@code double} value. It does this * by first constructing a {@code long} * value in exactly the manner - * of the {@code readlong} + * of the {@code readLong} * method, then converting this {@code long} * value to a {@code double} in exactly * the manner of the method {@code Double.longBitsToDouble}.