Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Update: Review change
Co-authored-by: Miha Zupan <[email protected]>
  • Loading branch information
liveans and MihaZupan authored Sep 7, 2022
commit 2147cd64d238981df7c9ffe9a09aec6ee99f21fd
15 changes: 1 addition & 14 deletions src/libraries/System.Net.WebProxy/src/System/Net/WebProxy.cs
Original file line number Diff line number Diff line change
Expand Up @@ -224,20 +224,7 @@ public ChangeTrackingArrayList() { }

public ChangeTrackingArrayList(ICollection c) : base(c) { }

private volatile bool _isChanged;

public bool IsChanged
{
get
{
return _isChanged;
}

set
{
_isChanged = value;
}
}
public volatile bool IsChanged;

// Override the methods that can add, remove, or change the regexes in the bypass list.
// Methods that only read (like CopyTo, BinarySearch, etc.) and methods that reorder
Expand Down