Codacy cleanup

This commit is contained in:
Miha Kralj
2022-11-14 17:38:37 -08:00
parent 6907c3d92d
commit 39bb7b8a91
15 changed files with 563 additions and 476 deletions
-1
View File
@@ -23,7 +23,6 @@ public class MIN_Series : Single_TSeries_Indicator
double _min = TValue.v;
for (int i = 0; i < this._buffer.Count; i++)
{
//_min = (this._buffer[i] < _min) ? this._buffer[i] : _min;
_min = Math.Min(this._buffer[i], _min);
}