You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by sd...@apache.org on 2022/01/11 23:56:51 UTC

[ignite-3] 23/27: - improve javadocs

This is an automated email from the ASF dual-hosted git repository.

sdanilov pushed a commit to branch uos-network
in repository https://gitbox.apache.org/repos/asf/ignite-3.git

commit 7dcb5766863cc607e5ca05b02ce0246d0f95b2c9
Author: Roman Puchkovskiy <ro...@gmail.com>
AuthorDate: Tue Jan 11 16:31:30 2022 +0400

    - improve javadocs
---
 .../marshal/UosObjectInputStream.java              | 23 ++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/modules/network/src/main/java/org/apache/ignite/internal/network/serialization/marshal/UosObjectInputStream.java b/modules/network/src/main/java/org/apache/ignite/internal/network/serialization/marshal/UosObjectInputStream.java
index 2a5ede8..7fb3f70 100644
--- a/modules/network/src/main/java/org/apache/ignite/internal/network/serialization/marshal/UosObjectInputStream.java
+++ b/modules/network/src/main/java/org/apache/ignite/internal/network/serialization/marshal/UosObjectInputStream.java
@@ -37,92 +37,110 @@ class UosObjectInputStream extends ObjectInputStream {
         this.context = context;
     }
 
+    /** {@inheritDoc} */
     @Override
     public int read() throws IOException {
         return input.read();
     }
 
+    /** {@inheritDoc} */
     @SuppressWarnings("NullableProblems")
     @Override
     public int read(byte[] buf) throws IOException {
         return input.read(buf);
     }
 
+    /** {@inheritDoc} */
     @Override
     public int read(byte[] buf, int off, int len) throws IOException {
         return input.read(buf, off, len);
     }
 
+    /** {@inheritDoc} */
     @Override
     public byte readByte() throws IOException {
         return input.readByte();
     }
 
+    /** {@inheritDoc} */
     @Override
     public short readShort() throws IOException {
         return input.readShort();
     }
 
+    /** {@inheritDoc} */
     @Override
     public int readInt() throws IOException {
         return input.readInt();
     }
 
+    /** {@inheritDoc} */
     @Override
     public long readLong() throws IOException {
         return input.readLong();
     }
 
+    /** {@inheritDoc} */
     @Override
     public float readFloat() throws IOException {
         return input.readFloat();
     }
 
+    /** {@inheritDoc} */
     @Override
     public double readDouble() throws IOException {
         return input.readDouble();
     }
 
+    /** {@inheritDoc} */
     @Override
     public char readChar() throws IOException {
         return input.readChar();
     }
 
+    /** {@inheritDoc} */
     @Override
     public boolean readBoolean() throws IOException {
         return input.readBoolean();
     }
 
+    /** {@inheritDoc} */
     @Override
     public String readUTF() throws IOException {
         return input.readUTF();
     }
 
+    /** {@inheritDoc} */
     @Override
     public int readUnsignedByte() throws IOException {
         return input.readUnsignedByte();
     }
 
+    /** {@inheritDoc} */
     @Override
     public int readUnsignedShort() throws IOException {
         return input.readUnsignedShort();
     }
 
+    /** {@inheritDoc} */
     @Override
     public void readFully(byte[] buf) throws IOException {
         input.readFully(buf);
     }
 
+    /** {@inheritDoc} */
     @Override
     public void readFully(byte[] buf, int off, int len) throws IOException {
         input.readFully(buf, off, len);
     }
 
+    /** {@inheritDoc} */
     @Override
     public String readLine() throws IOException {
         return input.readLine();
     }
 
+    /** {@inheritDoc} */
     @Override
     protected Object readObjectOverride() throws IOException {
         return doReadObject();
@@ -136,12 +154,14 @@ class UosObjectInputStream extends ObjectInputStream {
         }
     }
 
+    /** {@inheritDoc} */
     @Override
     public Object readUnshared() throws IOException {
         // TODO: IGNITE-16257 - implement 'unshared' logic?
         return doReadObject();
     }
 
+    /** {@inheritDoc} */
     @Override
     public void defaultReadObject() throws IOException {
         try {
@@ -156,16 +176,19 @@ class UosObjectInputStream extends ObjectInputStream {
         }
     }
 
+    /** {@inheritDoc} */
     @Override
     public int available() throws IOException {
         return input.available();
     }
 
+    /** {@inheritDoc} */
     @Override
     public int skipBytes(int len) throws IOException {
         return input.skipBytes(len);
     }
 
+    /** {@inheritDoc} */
     @Override
     public void close() throws IOException {
     }