mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Remove commas because grammer
This commit is contained in:
parent
6b8101d278
commit
67d365e661
1 changed files with 2 additions and 2 deletions
|
@ -18,14 +18,14 @@ public class MissingRepositoryException extends SnapshotAPIException {
|
||||||
static List<String> buildExportedToV2Message(String remoteUrl) {
|
static List<String> buildExportedToV2Message(String remoteUrl) {
|
||||||
if (remoteUrl == null) {
|
if (remoteUrl == null) {
|
||||||
return Arrays.asList(
|
return Arrays.asList(
|
||||||
"This Overleaf project has been moved to Overleaf v2, and cannot be used with git at this time.",
|
"This Overleaf project has been moved to Overleaf v2 and cannot be used with git at this time.",
|
||||||
"",
|
"",
|
||||||
"If this error persists, please contact us at support@overleaf.com, or",
|
"If this error persists, please contact us at support@overleaf.com, or",
|
||||||
"see https://www.overleaf.com/help/342 for more information."
|
"see https://www.overleaf.com/help/342 for more information."
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
return Arrays.asList(
|
return Arrays.asList(
|
||||||
"This Overleaf project has been moved to Overleaf v2, and has a new identifier.",
|
"This Overleaf project has been moved to Overleaf v2 and has a new identifier.",
|
||||||
"Please update your remote to:",
|
"Please update your remote to:",
|
||||||
"",
|
"",
|
||||||
" " + remoteUrl,
|
" " + remoteUrl,
|
||||||
|
|
Loading…
Reference in a new issue