mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-08-17 18:18:04 +00:00
Codacy cleanup
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user