Spaces:
Build error
Build error
package net.minecraft.util; | |
import java.io.DataOutput; | |
import java.io.IOException; | |
public class DelegateDataOutput implements DataOutput { | |
private final DataOutput parent; | |
public DelegateDataOutput(DataOutput p_311826_) { | |
this.parent = p_311826_; | |
} | |
public void write(int p_312870_) throws IOException { | |
this.parent.write(p_312870_); | |
} | |
public void write(byte[] p_311646_) throws IOException { | |
this.parent.write(p_311646_); | |
} | |
public void write(byte[] p_309909_, int p_313250_, int p_311853_) throws IOException { | |
this.parent.write(p_309909_, p_313250_, p_311853_); | |
} | |
public void writeBoolean(boolean p_310495_) throws IOException { | |
this.parent.writeBoolean(p_310495_); | |
} | |
public void writeByte(int p_311940_) throws IOException { | |
this.parent.writeByte(p_311940_); | |
} | |
public void writeShort(int p_310680_) throws IOException { | |
this.parent.writeShort(p_310680_); | |
} | |
public void writeChar(int p_310364_) throws IOException { | |
this.parent.writeChar(p_310364_); | |
} | |
public void writeInt(int p_310767_) throws IOException { | |
this.parent.writeInt(p_310767_); | |
} | |
public void writeLong(long p_313222_) throws IOException { | |
this.parent.writeLong(p_313222_); | |
} | |
public void writeFloat(float p_311489_) throws IOException { | |
this.parent.writeFloat(p_311489_); | |
} | |
public void writeDouble(double p_312046_) throws IOException { | |
this.parent.writeDouble(p_312046_); | |
} | |
public void writeBytes(String p_310549_) throws IOException { | |
this.parent.writeBytes(p_310549_); | |
} | |
public void writeChars(String p_311977_) throws IOException { | |
this.parent.writeChars(p_311977_); | |
} | |
public void writeUTF(String p_309650_) throws IOException { | |
this.parent.writeUTF(p_309650_); | |
} | |
} |