[ML] Fix NPE by calling super constructor that inits members. (elastic/x-pack-elasticsearch#1763)

Original commit: elastic/x-pack-elasticsearch@ee47ad8322
This commit is contained in:
David Kyle 2017-06-19 14:18:14 +01:00 committed by GitHub
parent 22d57ca96e
commit 40700f22b1
1 changed files with 2 additions and 1 deletions

View File

@ -171,7 +171,8 @@ public class IsolateDatafeedAction
readFrom(in);
}
public Response() {
Response() {
super(null, null);
}
@Override