aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-server/src/main/webapp
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@gmail.com>2014-03-14 18:51:18 +0100
committerSimon Brandhof <simon.brandhof@gmail.com>2014-03-14 18:52:08 +0100
commit77a4cff333666c34173437916bb46679daf5643a (patch)
tree3bc86c6af24b877531b1366276ac48b6733ba51f /sonar-server/src/main/webapp
parentdd6a45a1baa48b8c0440b1e9d8c682db92938244 (diff)
downloadsonarqube-77a4cff333666c34173437916bb46679daf5643a.tar.gz
sonarqube-77a4cff333666c34173437916bb46679daf5643a.zip
Minor cosmetic changes
Diffstat (limited to 'sonar-server/src/main/webapp')
-rw-r--r--sonar-server/src/main/webapp/WEB-INF/db/migrate/499_delete_inclusions_properties.rb10
-rw-r--r--sonar-server/src/main/webapp/WEB-INF/db/migrate/520_add_debt_columns_to_rules.rb2
2 files changed, 6 insertions, 6 deletions
diff --git a/sonar-server/src/main/webapp/WEB-INF/db/migrate/499_delete_inclusions_properties.rb b/sonar-server/src/main/webapp/WEB-INF/db/migrate/499_delete_inclusions_properties.rb
index ab25317901d..84a8bfb9899 100644
--- a/sonar-server/src/main/webapp/WEB-INF/db/migrate/499_delete_inclusions_properties.rb
+++ b/sonar-server/src/main/webapp/WEB-INF/db/migrate/499_delete_inclusions_properties.rb
@@ -25,11 +25,11 @@
class DeleteInclusionsProperties < ActiveRecord::Migration
class Property < ActiveRecord::Base
- end
+ end
- def self.up
- Property.delete_all("prop_key = 'sonar.inclusions'")
- Property.delete_all("prop_key = 'sonar.test.inclusions'")
- end
+ def self.up
+ Property.delete_all("prop_key = 'sonar.inclusions'")
+ Property.delete_all("prop_key = 'sonar.test.inclusions'")
+ end
end
diff --git a/sonar-server/src/main/webapp/WEB-INF/db/migrate/520_add_debt_columns_to_rules.rb b/sonar-server/src/main/webapp/WEB-INF/db/migrate/520_add_debt_columns_to_rules.rb
index 4a9fd458673..059f3a88b37 100644
--- a/sonar-server/src/main/webapp/WEB-INF/db/migrate/520_add_debt_columns_to_rules.rb
+++ b/sonar-server/src/main/webapp/WEB-INF/db/migrate/520_add_debt_columns_to_rules.rb
@@ -19,7 +19,7 @@
#
#
-# Sonar 4.3
+# SonarQube 4.3
# SONAR-5056
#
class AddDebtColumnsToRules < ActiveRecord::Migration