Unify ASF newline responses

This commit is contained in:
JustArchi
2017-01-31 22:03:20 +01:00
parent 265d869b58
commit a5c1b0c253
2 changed files with 80 additions and 154 deletions

View File

@@ -114,16 +114,6 @@ namespace ArchiSteamFarm {
}
}
internal int RemoveWhere(Predicate<T> match) {
Lock.EnterWriteLock();
try {
return HashSet.RemoveWhere(match);
} finally {
Lock.ExitWriteLock();
}
}
internal bool ReplaceIfNeededWith(ICollection<T> items) {
Lock.EnterUpgradeableReadLock();