We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8dd9fda commit cef8197Copy full SHA for cef8197
src/main/java/fr/greencodeinitiative/python/checks/AvoidMultipleIfElseStatementCheck.java
@@ -47,7 +47,7 @@
47
@Rule(key = "EC2")
48
public class AvoidMultipleIfElseStatementCheck extends PythonSubscriptionCheck {
49
50
- public static final String ERROR_MESSAGE = "Use a switch statement instead of multiple if-else if possible";
+ public static final String ERROR_MESSAGE = "Use a match-case statement instead of multiple if-else if possible";
51
52
// data structure for following usage of variable inside all the AST tree
53
private VariablesPerLevelDataStructure variablesStruct = new VariablesPerLevelDataStructure();
0 commit comments