Files
calculator/src/CalcManager
Cyril b8b0fdf86b Improving code style : verbosity, indentation levels (#200)
Fixing some nested if() statements and reducing indentation levels.

Making some sections less verbose, e.g:

if (a == 1)
{
    b = true;
}
else
{
    b = false;
}
↓

b = (a == 1)
2019-03-18 12:31:04 -07:00
..
2019-03-08 23:15:28 -08:00
2019-01-28 16:24:37 -08:00
2019-03-08 23:15:28 -08:00
2019-01-28 16:24:37 -08:00
2019-01-28 16:24:37 -08:00