aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-core
diff options
context:
space:
mode:
authorJulien Lancelot <julien.lancelot@sonarsource.com>2014-07-30 15:17:55 +0200
committerJulien Lancelot <julien.lancelot@sonarsource.com>2014-07-30 15:25:18 +0200
commited7933c1bb27808106fe52e50e018207ffea5fed (patch)
tree37180022812adbbe5a2c088dab15e1076e475d56 /sonar-core
parentc477a34b4ac84dbac9bba08f13dc1718da1b2231 (diff)
downloadsonarqube-ed7933c1bb27808106fe52e50e018207ffea5fed.tar.gz
sonarqube-ed7933c1bb27808106fe52e50e018207ffea5fed.zip
Fix quality flaws
Diffstat (limited to 'sonar-core')
-rw-r--r--sonar-core/src/main/java/org/sonar/core/properties/PropertiesDao.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-core/src/main/java/org/sonar/core/properties/PropertiesDao.java b/sonar-core/src/main/java/org/sonar/core/properties/PropertiesDao.java
index 4357258a1b4..e7a13b39f26 100644
--- a/sonar-core/src/main/java/org/sonar/core/properties/PropertiesDao.java
+++ b/sonar-core/src/main/java/org/sonar/core/properties/PropertiesDao.java
@@ -96,7 +96,7 @@ public class PropertiesDao implements BatchComponent, ServerComponent, DaoCompon
}
public List<PropertyDto> selectProjectProperties(String resourceKey, SqlSession session) {
- return session.getMapper(PropertiesMapper.class).selectProjectProperties(resourceKey);
+ return session.getMapper(PropertiesMapper.class).selectProjectProperties(resourceKey);
}
public List<PropertyDto> selectProjectProperties(String resourceKey) {