aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-server/src/main/webapp/javascripts/quality-gate/collections/conditions.js
diff options
context:
space:
mode:
Diffstat (limited to 'sonar-server/src/main/webapp/javascripts/quality-gate/collections/conditions.js')
-rw-r--r--sonar-server/src/main/webapp/javascripts/quality-gate/collections/conditions.js21
1 files changed, 0 insertions, 21 deletions
diff --git a/sonar-server/src/main/webapp/javascripts/quality-gate/collections/conditions.js b/sonar-server/src/main/webapp/javascripts/quality-gate/collections/conditions.js
deleted file mode 100644
index 0643c625032..00000000000
--- a/sonar-server/src/main/webapp/javascripts/quality-gate/collections/conditions.js
+++ /dev/null
@@ -1,21 +0,0 @@
-(function() {
- var __hasProp = {}.hasOwnProperty,
- __extends = function(child, parent) { for (var key in parent) { if (__hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; };
-
- define(['backbone', 'quality-gate/models/condition'], function(Backbone, Condition) {
- var Conditions;
- return Conditions = (function(_super) {
- __extends(Conditions, _super);
-
- function Conditions() {
- return Conditions.__super__.constructor.apply(this, arguments);
- }
-
- Conditions.prototype.model = Condition;
-
- return Conditions;
-
- })(Backbone.Collection);
- });
-
-}).call(this);