Remove old constructor without the migratedFromId param

This commit is contained in:
Shane Kilkelly 2018-12-05 14:59:41 +00:00
parent 925ebc2133
commit 709cb0887c
2 changed files with 2 additions and 11 deletions

View file

@ -52,16 +52,6 @@ public class GetDocResult extends Result {
this.migratedFromID = migratedFromID; this.migratedFromID = migratedFromID;
} }
public GetDocResult(
JsonElement error,
int versionID,
String createdAt,
String email,
String name
) {
this(error, versionID, createdAt, email, name, null);
}
@Override @Override
public JsonElement toJson() { public JsonElement toJson() {
JsonObject jsonThis = new JsonObject(); JsonObject jsonThis = new JsonObject();

View file

@ -48,7 +48,8 @@ public class SnapshotAPIState {
243, 243,
"2014-11-30T18:40:58Z", "2014-11-30T18:40:58Z",
"jdleesmiller+1@gmail.com", "jdleesmiller+1@gmail.com",
"John+1" "John+1",
null
) )
); );