| 123 | } |
| 124 | |
| 125 | QVector<RuleFileInfo> RulesLoader::getRuleFilesForProject( |
| 126 | ProjectExplorer::Project *project, RulesContext context) |
| 127 | { |
| 128 | if (!project) { |
| 129 | return QVector<RuleFileInfo>(); |
| 130 | } |
| 131 | |
| 132 | QString projectPath = getProjectPath(project); |
| 133 | return getRuleFiles(projectPath, context); |
| 134 | } |
| 135 | |
| 136 | QString RulesLoader::loadRuleFileContent(const QString &filePath) |
| 137 | { |
nothing calls this directly
no outgoing calls
no test coverage detected