Archived
0

Sonar: [squid:S1452] Remove usage of generic wildcard type

This commit is contained in:
2019-02-11 14:47:44 +03:00
parent 441e0e91d2
commit b95dd2dfdc
2 changed files with 2 additions and 2 deletions

View File

@@ -31,7 +31,7 @@ public abstract class NetInputStream extends InputStream {
public abstract double readDouble();
public abstract String readString();
public abstract UUID readUUID();
public abstract Tag<?> readNBT();
public abstract Tag readNBT();
public abstract void skipBytes(int count);