src: broad refactoring to use FilePath.wstr() where easily possible
This commit is contained in:
@@ -108,7 +108,7 @@ std::vector<FilePath> SourceGroupJava::doGetClassPath() const
|
||||
{
|
||||
if (classpath.exists())
|
||||
{
|
||||
LOG_INFO("Adding path to classpath: " + classpath.str());
|
||||
LOG_INFO(L"Adding path to classpath: " + classpath.wstr());
|
||||
classPath.push_back(classpath);
|
||||
}
|
||||
}
|
||||
@@ -117,7 +117,7 @@ std::vector<FilePath> SourceGroupJava::doGetClassPath() const
|
||||
{
|
||||
for (const FilePath& systemLibraryPath : ApplicationSettings::getInstance()->getJreSystemLibraryPathsExpanded())
|
||||
{
|
||||
LOG_INFO("Adding JRE system library path to classpath: " + systemLibraryPath.str());
|
||||
LOG_INFO(L"Adding JRE system library path to classpath: " + systemLibraryPath.wstr());
|
||||
classPath.push_back(systemLibraryPath);
|
||||
}
|
||||
}
|
||||
@@ -126,7 +126,7 @@ std::vector<FilePath> SourceGroupJava::doGetClassPath() const
|
||||
{
|
||||
if (rootDirectory.exists())
|
||||
{
|
||||
LOG_INFO("Adding root directory to classpath: " + rootDirectory.str());
|
||||
LOG_INFO(L"Adding root directory to classpath: " + rootDirectory.wstr());
|
||||
classPath.push_back(rootDirectory);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -51,7 +51,7 @@ std::vector<FilePath> SourceGroupJavaGradle::doGetClassPath() const
|
||||
|
||||
for (const FilePath& gradleJarPath : gradleJarPaths)
|
||||
{
|
||||
LOG_INFO("Adding jar to classpath: " + gradleJarPath.str());
|
||||
LOG_INFO(L"Adding jar to classpath: " + gradleJarPath.wstr());
|
||||
}
|
||||
|
||||
utility::append(classPath, gradleJarPaths);
|
||||
|
||||
@@ -51,7 +51,7 @@ std::vector<FilePath> SourceGroupJavaMaven::doGetClassPath() const
|
||||
|
||||
for (const FilePath& mavenJarPath : mavenJarPaths)
|
||||
{
|
||||
LOG_INFO("Adding jar to classpath: " + mavenJarPath.str());
|
||||
LOG_INFO(L"Adding jar to classpath: " + mavenJarPath.wstr());
|
||||
}
|
||||
|
||||
utility::append(classPath, mavenJarPaths);
|
||||
|
||||
@@ -42,7 +42,7 @@ namespace
|
||||
path.concatenate(toAppend);
|
||||
}
|
||||
pathList.push_back(path);
|
||||
LOG_INFO("Found directory \"" + path.str() + "\".");
|
||||
LOG_INFO(L"Found directory \"" + path.wstr() + L"\".");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user