InstaMaterial
InstaMaterial copied to clipboard
Refactor this method to not always return the same value
SonarQube is saying that methods returns should not be invariant
When a method is designed to return an invariant value, it may be poor design, but it shouldn't adversely affect the outcome of your program. However, when it happens on all paths through the logic, it is surely a bug.This rule raises an issue when a method contains several return statements that all return the same value.
Thank you