diff options
author | Simon Brandhof <simon.brandhof@gmail.com> | 2011-08-16 18:07:22 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@gmail.com> | 2011-08-16 18:07:22 +0200 |
commit | ffded94d51008c00351a231cc9b6b86201400dec (patch) | |
tree | c209db8bf502d82764bc5ddc14e56997a1023cce /sonar-server | |
parent | 11c70e21048491ba9f553c88128bd923720d927a (diff) | |
download | sonarqube-ffded94d51008c00351a231cc9b6b86201400dec.tar.gz sonarqube-ffded94d51008c00351a231cc9b6b86201400dec.zip |
Remove unused ruby code in time machine
Diffstat (limited to 'sonar-server')
-rw-r--r-- | sonar-server/src/main/webapp/WEB-INF/app/models/trends_chart.rb | 28 |
1 files changed, 1 insertions, 27 deletions
diff --git a/sonar-server/src/main/webapp/WEB-INF/app/models/trends_chart.rb b/sonar-server/src/main/webapp/WEB-INF/app/models/trends_chart.rb index 44855d4077f..39497a9ed18 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/models/trends_chart.rb +++ b/sonar-server/src/main/webapp/WEB-INF/app/models/trends_chart.rb @@ -65,33 +65,7 @@ class TrendsChart ProjectMeasure.connection.select_all(Project.send(:sanitize_sql, conditions)) end end - - def self.time_machine_reviews(resource, metric_ids, options={}) - unless metric_ids.empty? - sql= "SELECT m.measure_date as created_at, m.value as value, m.metric_id as metric_id " + - "FROM project_measures m " + - "WHERE m.snapshot_id IS NULL " + - "AND m.rule_id is null " + - "AND m.project_id=? " + - "AND m.metric_id in (?) " + - "and m.rule_priority is null and m.characteristic_id IS NULL" - if (options[:from]) - sql += ' and m.measure_date>=?' - end - if (options[:to]) - sql += ' and m.measure_date<=?' - end - conditions=[sql, resource.id, metric_ids] - if (options[:from]) - conditions<<options[:from] - end - if (options[:to]) - conditions<<options[:to] - end - ProjectMeasure.connection.select_all(Project.send(:sanitize_sql, conditions)) - end - end - + def self.add_measures(java_chart, sqlresult) if sqlresult && sqlresult.size>0 sqlresult.each do |hash| |