Skip to content

Commit

Permalink
fixed missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
senn committed Jan 29, 2022
1 parent cec248e commit 0af5325
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ public List<File> createSlingModelCodeFiles() throws ComponentCreationException
List<String> contentLines = new ArrayList<>();
String line;
while ((line = bufferedPackageInfoStreamReader.readLine()) != null) {
line = line.replace("{%PACKAGE_NAME%}", componentConfig.getPackageName() + (!componentConfig.getPackageName().endsWith(componentConfig.getShortComponentName()) ? "." + componentConfig.getShortComponentName() : ""))
line = line.replace("{%PACKAGE_NAME%}", componentConfig.getPackageName() + (!componentConfig.getPackageName().endsWith(componentConfig.getShortComponentName()) ? "." + componentConfig.getShortComponentName() : ""));
contentLines.add(line);
}
LOGGER.debug("Finished read and replace");
Expand Down

0 comments on commit 0af5325

Please sign in to comment.