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 MAX_Series : Single_TSeries_Indicator
double _max = TValue.v;
for (int i = 0; i < this._buffer.Count; i++)
{
//_max = (this._buffer[i] > _max) ? this._buffer[i] : _max;
_max = Math.Max(this._buffer[i], _max);
}