logic: add auto-detection for JRE System Library
* fixed error columns are not saved to database correctly * implemented setting JRE System Library paths in app settings * added detector for JRE System Library that not use Java Runtime specified in AppSettings but detects JRE on its own by reusing the JavaPathDetector. * added option to use JRE System Library in JavaSourceGroup
This commit is contained in:
@@ -265,7 +265,7 @@ Id SqliteIndexStorage::addError(const std::string& message, const FilePath& file
|
||||
m_insertErrorStmt.bind(3, indexed);
|
||||
m_insertErrorStmt.bind(4, filePath.str().c_str());
|
||||
m_insertErrorStmt.bind(5, int(lineNumber));
|
||||
m_insertErrorStmt.bind(5, int(columnNumber));
|
||||
m_insertErrorStmt.bind(6, int(columnNumber));
|
||||
const bool success = executeStatement(m_insertErrorStmt);
|
||||
m_insertErrorStmt.reset();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user