You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is a large section of unreachable code in FlowLatencyAnalysisSwitch.mapComponentInstance. The unreachable code is from line 216 to line 256.
The if condition on line 215, entry.getContributors().isEmpty(), only evaluates to true for the first segment of the flow. However, this is contained in another if which only executes for segments that have a previous connection. That condition is on line 189 and is fi != null.
Is there a bug somewhere and should this code actually be executed or should the unreachable code simply be removed? If I am wrong and the code can be executed, then please provide a model which executes that code.
The text was updated successfully, but these errors were encountered:
There is a large section of unreachable code in
FlowLatencyAnalysisSwitch.mapComponentInstance
. The unreachable code is from line 216 to line 256.The if condition on line 215,
entry.getContributors().isEmpty()
, only evaluates totrue
for the first segment of the flow. However, this is contained in another if which only executes for segments that have a previous connection. That condition is on line 189 and isfi != null
.Is there a bug somewhere and should this code actually be executed or should the unreachable code simply be removed? If I am wrong and the code can be executed, then please provide a model which executes that code.
The text was updated successfully, but these errors were encountered: