Skip to content

Commit fa311cd

Browse files
committed
remove extra methods
1 parent 8150a37 commit fa311cd

File tree

1 file changed

+0
-17
lines changed

1 file changed

+0
-17
lines changed

x-pack/protocol/src/main/java/org/elasticsearch/protocol/xpack/license/DeleteLicenseRequest.java

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -20,29 +20,12 @@
2020

2121
import org.elasticsearch.action.ActionRequestValidationException;
2222
import org.elasticsearch.action.support.master.AcknowledgedRequest;
23-
import org.elasticsearch.common.io.stream.StreamInput;
24-
import org.elasticsearch.common.io.stream.StreamOutput;
25-
26-
import java.io.IOException;
2723

2824

2925
public class DeleteLicenseRequest extends AcknowledgedRequest<DeleteLicenseRequest> {
3026

31-
public DeleteLicenseRequest() {
32-
}
33-
3427
@Override
3528
public ActionRequestValidationException validate() {
3629
return null;
3730
}
38-
39-
@Override
40-
public void readFrom(StreamInput in) throws IOException {
41-
super.readFrom(in);
42-
}
43-
44-
@Override
45-
public void writeTo(StreamOutput out) throws IOException {
46-
super.writeTo(out);
47-
}
4831
}

0 commit comments

Comments
 (0)