Code inspection: Inline temporary variable
Last modified: 14 May 2024tip
This inspection reports variables that only store the value of another variable or parameter without performing any other function. Such variables can be safely removed, and their usages can be replaced with the assigned variable. This reduces the unnecessary complexity of your code and makes it more readable.