Skip to content

Commit

Permalink
Removed magic number
Browse files Browse the repository at this point in the history
  • Loading branch information
seaside1 authored and seime committed Jan 14, 2024
1 parent e769d09 commit 569b1eb
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 569b1eb

Please sign in to comment.