Skip to content

Commit e6d2f7b

Browse files
committed
JavaProxy: fix looking for JAR files
1 parent 105cee1 commit e6d2f7b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

JavaProxy.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ static std::vector<std::string> getAllJARFiles()
7474
{
7575
Poco::Path path(dirIter->path());
7676

77-
if(path.getExtension() == ".jar")
77+
if(path.getExtension() == "jar")
7878
{
7979
jarFiles.emplace_back(path.toString());
8080
}

0 commit comments

Comments
 (0)