Skip to content

Commit

Permalink
Removed magic number
Browse files Browse the repository at this point in the history
  • Loading branch information
seaside1 committed Nov 21, 2023
1 parent f06501d commit 93f043e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ public boolean compile(List<File> javaSourceFiles, String classPath) {
String cp = openhabCoreJar + System.getProperty(JAVA_CLASS_PATH_PROPERTY) + File.pathSeparator
+ openhabCoreThingJar + System.getProperty(JAVA_CLASS_PATH_PROPERTY) + File.pathSeparator + classPath;
optionList.add(cp);
logDebug("1337Compiling classes using classpath: {}", cp);
logDebug("Compiling classes using classpath: {}", cp);
javaSourceFiles.stream().filter(javaSourceFile -> javaSourceFile.exists() && javaSourceFile.canRead())
.forEach(javaSourceFile -> logDebug("Compiling java Source file: {}", javaSourceFile));

Expand Down

0 comments on commit 93f043e

Please sign in to comment.