Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/external_issue.rb')
-rw-r--r--app/models/external_issue.rb25
1 files changed, 0 insertions, 25 deletions
diff --git a/app/models/external_issue.rb b/app/models/external_issue.rb
deleted file mode 100644
index 50efcb32f1b..00000000000
--- a/app/models/external_issue.rb
+++ /dev/null
@@ -1,25 +0,0 @@
-class ExternalIssue
- def initialize(issue_identifier, project)
- @issue_identifier, @project = issue_identifier, project
- end
-
- def to_s
- @issue_identifier.to_s
- end
-
- def id
- @issue_identifier.to_s
- end
-
- def iid
- @issue_identifier.to_s
- end
-
- def ==(other)
- other.is_a?(self.class) && (to_s == other.to_s)
- end
-
- def project
- @project
- end
-end