X Tutup
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .globalconfig
Original file line number Diff line number Diff line change
Expand Up @@ -1250,7 +1250,7 @@ dotnet_diagnostic.SA1210.severity = none
dotnet_diagnostic.SA1211.severity = none

# SA1212: Property accessors should follow order
dotnet_diagnostic.SA1212.severity = none
dotnet_diagnostic.SA1212.severity = warning

# SA1213: Event accessors should follow order
dotnet_diagnostic.SA1213.severity = none
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -675,9 +675,9 @@ internal class Operation : IThrottleOperation
private Thread workerThreadStart;
private Thread workerThreadStop;

public bool Done { set; get; }
public bool Done { get; set; }

public int SleepTime { set; get; } = 100;
public int SleepTime { get; set; } = 100;

private void WorkerThreadMethodStart()
{
Expand Down
X Tutup