Skip to content

Commit

Permalink
Rebase changes
Browse files Browse the repository at this point in the history
Signed-off-by: Jakub Stejskal <[email protected]>
  • Loading branch information
Frawless committed Jun 28, 2024
1 parent ec9e3ba commit a6d76b9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public void execute() {
// Add all jar files in target lib
addJarFilesToClassPath(new File(project.getBuild().getDirectory()), classRealm);
} catch (MalformedURLException e) {
e.printStackTrace();
getLog().error(e);
}

getLog().debug("Loaded files in classpath:");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,6 @@ private static String createTableOfSteps(Step[] steps) {
/**
* Creates list of labels for the particular test-case in format - `label`
*
*
* @param labels list of labels from the {@link TestDoc} annotation
* @return list of labels in {@link List<String>}
*/
Expand All @@ -232,7 +231,7 @@ private static List<String> createLabels(Label[] labels) {
* Update label file that is available in the docs dir
*
* @param labelFilePath path to label file within docs dir
* @param updatedData data that will be put into the file
* @param updatedData data that will be put into the file
*/
private static void updateLabelFile(String labelFilePath, String updatedData) {
try {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ private TextList() {
public static String createUnorderedList(List<String> objects) {
StringBuilder builder = new StringBuilder();
objects.forEach(object ->
builder.append("* " + object + "\n")
builder.append("* ").append(object).append("\n")
);

return builder.toString();
Expand Down

0 comments on commit a6d76b9

Please sign in to comment.