| 40 | } |
| 41 | |
| 42 | QString RulesLoader::loadRulesForProject(ProjectExplorer::Project *project, RulesContext context) |
| 43 | { |
| 44 | if (!project) { |
| 45 | return QString(); |
| 46 | } |
| 47 | |
| 48 | QString projectPath = getProjectPath(project); |
| 49 | return loadRules(projectPath, context); |
| 50 | } |
| 51 | |
| 52 | ProjectExplorer::Project *RulesLoader::getActiveProject() |
| 53 | { |
nothing calls this directly
no outgoing calls
no test coverage detected