Skip to content

Commit 8588b8c

Browse files
committed
style: Removed unnecessary string concatination
1 parent dc1441f commit 8588b8c

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

MLAPI-Editor/MLAPIEditor.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -794,9 +794,7 @@ private IEnumerator FetchAll()
794794
if (!string.IsNullOrEmpty(www.error))
795795
{
796796
//Some kind of error
797-
statusMessage = "Failed to " +
798-
"fetch rel" +
799-
"eases. Error: " + www.error;
797+
statusMessage = "Failed to fetch releases. Error: " + www.error;
800798
double startTime = EditorApplication.timeSinceStartup;
801799
//Basically = yield return new WaitForSeconds(5);
802800
while (EditorApplication.timeSinceStartup - startTime <= 5f)

0 commit comments

Comments
 (0)