Our website uses cookies to enhance your browsing experience.
Accept
to the top
>
>
>
Examples of errors detected by the...

Examples of errors detected by the V3107 diagnostic

V3107. Identical expression to the left and to the right of compound assignment.


Barotrauma

V3107 Identical expression 'power' to the left and to the right of compound assignment. RelayComponent.cs 150


public override void ReceivePowerProbeSignal(Connection connection,
                                             Item source, float power)
{
  ....
  if (power < 0.0f)
  {
    ....
  }
  else
  {
    if (connection.IsOutput || powerOut == null) { return; }

    if (currPowerConsumption - power < -MaxPower)
    {
      power += MaxPower + (currPowerConsumption - power);
    }
  }
}