HDFS-16092. Avoid creating LayoutFlags redundant objects (#3150)

(cherry picked from commit 93a1685073)
This commit is contained in:
Viraj Jasani 2021-06-29 15:01:02 +05:30 committed by Wei-Chiu Chuang
parent 47b3939009
commit 8538881710
No known key found for this signature in database
GPG Key ID: B362E1C021854B9D
1 changed files with 5 additions and 5 deletions

View File

@ -36,14 +36,15 @@ import org.apache.hadoop.thirdparty.com.google.common.collect.Sets;
*/
@InterfaceAudience.Private
public class LayoutFlags {
/**
* Load a LayoutFlags object from a stream.
* Read next int from given input stream. If the value is not 0 (unsupported
* feature flags), throw appropriate IOException.
*
* @param in The stream to read from.
* @throws IOException
* @throws IOException If next byte read from given stream is not 0.
*/
public static LayoutFlags read(DataInputStream in)
throws IOException {
public static void read(DataInputStream in) throws IOException {
int length = in.readInt();
if (length < 0) {
throw new IOException("The length of the feature flag section " +
@ -52,7 +53,6 @@ public class LayoutFlags {
throw new IOException("Found feature flags which we can't handle. " +
"Please upgrade your software.");
}
return new LayoutFlags();
}
private LayoutFlags() {