Skip to content

Commit 658f496

Browse files
committed
Removed C# >4.0 features
1 parent 0ec1bfc commit 658f496

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

MLAPI-Editor/MLAPIEditor.cs

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,14 @@ private long lastUpdated
240240

241241
private bool isFetching = false;
242242
private bool isParsing = false;
243-
private bool canRefetch => !(isFetching || isParsing);
243+
private bool canRefetch
244+
{
245+
get
246+
{
247+
return !(isFetching || isParsing);
248+
}
249+
}
250+
244251
private string statusMessage;
245252

246253
private int tab;

0 commit comments

Comments
 (0)