mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-01 05:11:34 +02:00
More concise handling of optional migratedFromId in test
This commit is contained in:
@@ -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(
|
||||
|
||||
Reference in New Issue
Block a user