X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Ffcp%2FFCPPluginReply.java;h=0ed55f0ed1024a5b59e293df5aea17119dad2817;hb=05e52ccf3f6e8f2645031cfd3b35f3f71d3a2b82;hp=8ce892b1d3fde891e2b05b3d4bfddf905f446b3a;hpb=97f432ee0c2189a2c540e365e37daa11d9a591b1;p=jFCPlib.git diff --git a/src/main/java/net/pterodactylus/fcp/FCPPluginReply.java b/src/main/java/net/pterodactylus/fcp/FCPPluginReply.java index 8ce892b..0ed55f0 100644 --- a/src/main/java/net/pterodactylus/fcp/FCPPluginReply.java +++ b/src/main/java/net/pterodactylus/fcp/FCPPluginReply.java @@ -42,7 +42,7 @@ public class FCPPluginReply extends BaseMessage implements Identifiable { * @param payloadInputStream * The optional input stream for the payload */ - FCPPluginReply(FcpMessage receivedMessage, InputStream payloadInputStream) { + public FCPPluginReply(FcpMessage receivedMessage, InputStream payloadInputStream) { super(receivedMessage); this.payloadInputStream = payloadInputStream; } @@ -61,6 +61,7 @@ public class FCPPluginReply extends BaseMessage implements Identifiable { * * @return The identifier of the request */ + @Override public String getIdentifier() { return getField("Identifier"); }