Skip to content

Commit

Permalink
make constants final (#46)
Browse files Browse the repository at this point in the history
  • Loading branch information
donhui authored Feb 27, 2024
1 parent aae13bd commit 4bf2a6b
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/main/java/org/sonarsource/plugins/mybatis/Constant.java
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
package org.sonarsource.plugins.mybatis;

public class Constant {
public static String MYBATIS_MAPPER_CHECK_RULE_01 = "MyBatisMapperCheckRule01";
public static String MYBATIS_MAPPER_CHECK_RULE_02 = "MyBatisMapperCheckRule02";
public static String MYBATIS_MAPPER_CHECK_RULE_03 = "MyBatisMapperCheckRule03";
public static String MYBATIS_MAPPER_CHECK_RULE_04 = "MyBatisMapperCheckRule04";
public static String MYBATIS_MAPPER_CHECK_RULE_05 = "MyBatisMapperCheckRule05";
public static String MYBATIS_MAPPER_CHECK_RULE_06 = "MyBatisMapperCheckRule06";
public static String MYBATIS_MAPPER_CHECK_RULE_07 = "MyBatisMapperCheckRule07";
public static final String MYBATIS_MAPPER_CHECK_RULE_01 = "MyBatisMapperCheckRule01";
public static final String MYBATIS_MAPPER_CHECK_RULE_02 = "MyBatisMapperCheckRule02";
public static final String MYBATIS_MAPPER_CHECK_RULE_03 = "MyBatisMapperCheckRule03";
public static final String MYBATIS_MAPPER_CHECK_RULE_04 = "MyBatisMapperCheckRule04";
public static final String MYBATIS_MAPPER_CHECK_RULE_05 = "MyBatisMapperCheckRule05";
public static final String MYBATIS_MAPPER_CHECK_RULE_06 = "MyBatisMapperCheckRule06";
public static final String MYBATIS_MAPPER_CHECK_RULE_07 = "MyBatisMapperCheckRule07";

}

0 comments on commit 4bf2a6b

Please sign in to comment.