8242230: Whitespace typos, relaxed javadoc, formatting

Reviewed-by: darcy, igerasim
This commit is contained in:
Pavel Rappo 2020-04-08 11:16:56 +01:00
parent 59684e10d1
commit 4c4271f283
19 changed files with 52 additions and 53 deletions

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 1995, 2019, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1995, 2020, 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
@ -113,8 +113,8 @@ public interface DataOutput {
void writeBoolean(boolean v) throws IOException;
/**
* Writes to the output stream the eight low-
* order bits of the argument {@code v}.
* Writes to the output stream the eight low-order
* bits of the argument {@code v}.
* The 24 high-order bits of {@code v}
* are ignored. (This means that {@code writeByte}
* does exactly the same thing as {@code write}
@ -140,7 +140,7 @@ public interface DataOutput {
* }</pre> <p>
* The bytes written by this method may be
* read by the {@code readShort} method
* of interface {@code DataInput} , which
* of interface {@code DataInput}, which
* will then return a {@code short} equal
* to {@code (short)v}.
*
@ -161,7 +161,7 @@ public interface DataOutput {
* }</pre><p>
* The bytes written by this method may be
* read by the {@code readChar} method
* of interface {@code DataInput} , which
* of interface {@code DataInput}, which
* will then return a {@code char} equal
* to {@code (char)v}.
*
@ -183,7 +183,7 @@ public interface DataOutput {
* }</pre><p>
* The bytes written by this method may be read
* by the {@code readInt} method of interface
* {@code DataInput} , which will then
* {@code DataInput}, which will then
* return an {@code int} equal to {@code v}.
*
* @param v the {@code int} value to be written.
@ -208,7 +208,7 @@ public interface DataOutput {
* }</pre><p>
* The bytes written by this method may be
* read by the {@code readLong} method
* of interface {@code DataInput} , which
* of interface {@code DataInput}, which
* will then return a {@code long} equal
* to {@code v}.
*
@ -343,7 +343,7 @@ public interface DataOutput {
* string {@code s} is written.<p> The
* bytes written by this method may be read
* by the {@code readUTF} method of interface
* {@code DataInput} , which will then
* {@code DataInput}, which will then
* return a {@code String} equal to {@code s}.
*
* @param s the string value to be written.