I ran a statistical code analyzer (SonarQube) to see if it can detect any issues, bugs or code smells that should be fixed. This one is kind of interesting.
Basically, the problem is that the problems.concat returns a brand new array. But this array is never stored or used anywhere. That means that either A) it isn't used and should be removed or B) should be used, but isn't right now.
I'm not sure if we should do something lime problems = problems.concat, so that's why I'm opening the issue.
Expected Behavior
Current Behavior
Affected packages
Possible Solution
Steps to Reproduce (for bugs)
Context
Your Environment
I ran a statistical code analyzer (SonarQube) to see if it can detect any issues, bugs or code smells that should be fixed. This one is kind of interesting.
Basically, the problem is that the
problems.concatreturns a brand new array. But this array is never stored or used anywhere. That means that either A) it isn't used and should be removed or B) should be used, but isn't right now.I'm not sure if we should do something lime
problems = problems.concat, so that's why I'm opening the issue.Expected BehaviorCurrent BehaviorAffected packages
Possible SolutionSteps to Reproduce (for bugs)ContextYour Environment