Removed runtime try, catch

This commit is contained in:
Antoine Pilote
2023-08-09 00:30:02 -04:00
parent 899e2dee86
commit 67b8ca50fd

View File

@@ -32,15 +32,7 @@ void main(int argc, char* argv[])
return;
}
try
{
project->Deserialize(json::parse(projectfileContent));
}
catch(...)
{
Logger::Log("Failed to deserialize project", "runtime", CRITICAL);
return;
}
project->Deserialize(json::parse(projectfileContent));
window->SetTitle(project->Name);