Skip to content

Commit

Permalink
Fix Sonar code smells
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalgrimaud committed Mar 17, 2022
1 parent ad6886b commit 3b04cbe
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ private Constants() {}
public static final String INFRASTRUCTURE = "infrastructure";
public static final String PRIMARY = getPath(INFRASTRUCTURE, "primary");
public static final String SECONDARY = getPath(INFRASTRUCTURE, "secondary");
public static final String CONFIG = getPath(INFRASTRUCTURE, "config");
public static final String CONFIG = getPath(INFRASTRUCTURE, CONFIG_FOLDER);

public static final String TECHNICAL = "technical";
public static final String TECHNICAL_INFRASTRUCTURE = getPath(TECHNICAL, "infrastructure");
public static final String TECHNICAL_INFRASTRUCTURE = getPath(TECHNICAL, INFRASTRUCTURE);
public static final String TECHNICAL_PRIMARY = getPath(TECHNICAL, PRIMARY);
}

0 comments on commit 3b04cbe

Please sign in to comment.