diff options
author | Julien HENRY <julien.henry@sonarsource.com> | 2014-08-27 16:46:44 +0200 |
---|---|---|
committer | Julien HENRY <julien.henry@sonarsource.com> | 2014-08-27 16:47:14 +0200 |
commit | 09f05d59b05849955dee633437c0814512fd0997 (patch) | |
tree | a4d756f988608dd53a23e5e88664e9a532a1fe4e /sonar-core | |
parent | 2af85874240a994684de6837bbcdb6dd91497e3f (diff) | |
download | sonarqube-09f05d59b05849955dee633437c0814512fd0997.tar.gz sonarqube-09f05d59b05849955dee633437c0814512fd0997.zip |
Fix regression caused by SONAR-5349
Diffstat (limited to 'sonar-core')
-rw-r--r-- | sonar-core/src/main/java/org/sonar/core/resource/ResourceDao.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-core/src/main/java/org/sonar/core/resource/ResourceDao.java b/sonar-core/src/main/java/org/sonar/core/resource/ResourceDao.java index dd1095d88ba..94b54f042b6 100644 --- a/sonar-core/src/main/java/org/sonar/core/resource/ResourceDao.java +++ b/sonar-core/src/main/java/org/sonar/core/resource/ResourceDao.java @@ -202,7 +202,7 @@ public class ResourceDao implements DaoComponent { /** * Return the root project of a component. * Will return the component itself if it's already the root project - * Can return null if the component that does exists. + * Can return null if the component does not exists. * * The implementation should rather use a new column already containing the root project, see https://jira.codehaus.org/browse/SONAR-5188. */ |