Skip to content

Commit

Permalink
camelCase the variable name.
Browse files Browse the repository at this point in the history
  • Loading branch information
svaningelgem authored and LMBishop committed Jan 9, 2024
1 parent 454c8d4 commit 597086d
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -320,10 +320,10 @@ public FileVisitResult visitFile(Path path, BasicFileAttributes attributes) {
if (c != null) {
c.registerQuestId(id);
} else {
String all_categories = questManager.getCategories().stream().map(Category::getId).collect(Collectors.joining(", "));
String allCategories = questManager.getCategories().stream().map(Category::getId).collect(Collectors.joining(", "));
problems.add(new ConfigProblem(ConfigProblem.ConfigProblemType.WARNING,
ConfigProblemDescriptions.UNKNOWN_CATEGORY.getDescription(category, all_categories),
ConfigProblemDescriptions.UNKNOWN_CATEGORY.getExtendedDescription(category, all_categories),
ConfigProblemDescriptions.UNKNOWN_CATEGORY.getDescription(category, allCategories),
ConfigProblemDescriptions.UNKNOWN_CATEGORY.getExtendedDescription(category, allCategories),
"options.category"));
}
}
Expand Down

0 comments on commit 597086d

Please sign in to comment.