Skip to content

Commit

Permalink
Using PathSeparator instead of :
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandrelombard committed Nov 4, 2019
1 parent 2d3d519 commit cb76871
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -397,7 +397,7 @@ protected AbstractMarkerLanguageParser createLanguageParser(File inputFile) thro
final StringBuilder cp = new StringBuilder();
for (final File cpElement : getClassPath()) {
if (cp.length() > 0) {
cp.append(":"); //$NON-NLS-1$
cp.append(File.pathSeparator);
}
cp.append(cpElement.getAbsolutePath());
}
Expand Down

0 comments on commit cb76871

Please sign in to comment.