Before:

// Computing the absolute value
if( value < 0 )
{
   value *= -1;
}
else
{
   value = value;
}