mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
More concise handling of optional migratedFromId
in test
This commit is contained in:
parent
709cb0887c
commit
8cb715014c
1 changed files with 13 additions and 22 deletions
|
@ -83,30 +83,21 @@ public class SnapshotAPIStateBuilder {
|
|||
String projectName,
|
||||
JsonObject jsonGetDoc
|
||||
) {
|
||||
String migratedFromId = null;
|
||||
if (jsonGetDoc.has("migratedFromId")) {
|
||||
getDoc.put(
|
||||
projectName,
|
||||
new GetDocResult(
|
||||
jsonGetDoc.get("error"),
|
||||
jsonGetDoc.get("versionID").getAsInt(),
|
||||
jsonGetDoc.get("createdAt").getAsString(),
|
||||
jsonGetDoc.get("email").getAsString(),
|
||||
jsonGetDoc.get("name").getAsString(),
|
||||
jsonGetDoc.get("migratedFromId").getAsString()
|
||||
)
|
||||
);
|
||||
} else {
|
||||
getDoc.put(
|
||||
projectName,
|
||||
new GetDocResult(
|
||||
jsonGetDoc.get("error"),
|
||||
jsonGetDoc.get("versionID").getAsInt(),
|
||||
jsonGetDoc.get("createdAt").getAsString(),
|
||||
jsonGetDoc.get("email").getAsString(),
|
||||
jsonGetDoc.get("name").getAsString()
|
||||
)
|
||||
);
|
||||
migratedFromId = jsonGetDoc.get("migratedFromId").getAsString();
|
||||
}
|
||||
getDoc.put(
|
||||
projectName,
|
||||
new GetDocResult(
|
||||
jsonGetDoc.get("error"),
|
||||
jsonGetDoc.get("versionID").getAsInt(),
|
||||
jsonGetDoc.get("createdAt").getAsString(),
|
||||
jsonGetDoc.get("email").getAsString(),
|
||||
jsonGetDoc.get("name").getAsString(),
|
||||
migratedFromId
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
private void addGetSavedVersForProject(
|
||||
|
|
Loading…
Reference in a new issue