Skip to content

Commit 0e4e8a5

Browse files
committed
remove autoprop
1 parent 9631140 commit 0e4e8a5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Scripts/Utilities/Utility.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1309,7 +1309,7 @@ public bool IsTokenExpired
13091309
public class SimpleGet: IDisposable
13101310
{
13111311
public string Result { get; set; }
1312-
public bool IsComplete { get; set; } = false;
1312+
public bool IsComplete { get; set; }
13131313

13141314
private string _url = null;
13151315
private string _username = null;
@@ -1318,6 +1318,8 @@ public class SimpleGet: IDisposable
13181318

13191319
public SimpleGet(string url, string username = null, string password = null)
13201320
{
1321+
IsComplete = false;
1322+
13211323
if (string.IsNullOrEmpty(url))
13221324
throw new ArgumentNullException("url is required for SimpleGet()");
13231325

0 commit comments

Comments
 (0)