diff options
author | David Gageot <david@gageot.net> | 2012-10-10 17:40:25 +0200 |
---|---|---|
committer | David Gageot <david@gageot.net> | 2012-10-10 17:40:34 +0200 |
commit | 640079bab8cb35a25ae814b0a49b8e0be2a3dc7a (patch) | |
tree | 8cd19b4827522dd0ca1563105b802e0de2de722f | |
parent | 2295e6131a920023467dba0b3ea730f2f494c9c2 (diff) | |
download | sonarqube-640079bab8cb35a25ae814b0a49b8e0be2a3dc7a.tar.gz sonarqube-640079bab8cb35a25ae814b0a49b8e0be2a3dc7a.zip |
Fix evaluation warning
-rw-r--r-- | sonar-server/src/main/webapp/WEB-INF/lib/database_version.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-server/src/main/webapp/WEB-INF/lib/database_version.rb b/sonar-server/src/main/webapp/WEB-INF/lib/database_version.rb index 2f4870706d4..7ba8d01dcd2 100644 --- a/sonar-server/src/main/webapp/WEB-INF/lib/database_version.rb +++ b/sonar-server/src/main/webapp/WEB-INF/lib/database_version.rb @@ -106,7 +106,7 @@ class DatabaseVersion def self.production? @@production ||= begin - dialect()!='h2' + dialect()!='.h2.' end end end |