Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ public String readSafeUTF(DataInput in) throws IOException {

/**
* Writes a collection of Externalizable objects. The collection passed as a parameter
* must be a collection and not a <tt>null</null> value.
* must be a collection and not a {@code null} value.
*
* @param out the output stream.
* @param value the collection of Externalizable objects. This value must not be null.
Expand All @@ -229,7 +229,7 @@ public void writeExternalizableCollection(DataOutput out, Collection<? extends E

/**
* Writes a collection of Serializable objects. The collection passed as a parameter
* must be a collection and not a <tt>null</null> value.
* must be a collection and not a {@code null} value.
*
* @param out the output stream.
* @param value the collection of Serializable objects. This value must not be null.
Expand All @@ -241,7 +241,7 @@ public void writeSerializableCollection(DataOutput out, Collection<? extends Ser

/**
* Reads a collection of Externalizable objects and adds them to the collection passed as a parameter. The
* collection passed as a parameter must be a collection and not a <tt>null</null> value.
* collection passed as a parameter must be a collection and not a {@code null} value.
*
* @param in the input stream.
* @param value the collection of Externalizable objects. This value must not be null.
Expand All @@ -258,7 +258,7 @@ public int readExternalizableCollection(DataInput in, Collection<? extends Exter

/**
* Reads a collection of Serializable objects and adds them to the collection passed as a parameter. The
* collection passed as a parameter must be a collection and not a <tt>null</null> value.
* collection passed as a parameter must be a collection and not a {@code null} value.
*
* @param in the input stream.
* @param value the collection of Serializable objects. This value must not be null.
Expand Down