Work after Sonarcloud

This commit is contained in:
Nicolas Héron 2020-06-01 16:34:55 +02:00
commit 0a97629aa5
25 changed files with 256 additions and 503 deletions

View file

@ -20,7 +20,7 @@ public enum FactType {
public static FactType getEnum(String factType) {
for (FactType type : FactType.values()) {
if (type.name().equals(type))
if (type.name().equals(factType))
return type;
}
return null;