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 'lib/gitlab/import_formatter.rb')
-rw-r--r--lib/gitlab/import_formatter.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/lib/gitlab/import_formatter.rb b/lib/gitlab/import_formatter.rb
deleted file mode 100644
index 72e041a90b1..00000000000
--- a/lib/gitlab/import_formatter.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-module Gitlab
- class ImportFormatter
- def comment(author, date, body)
- "\n\n*By #{author} on #{date}*\n\n#{body}"
- end
-
- def comments_header
- "\n\n\n**Imported comments:**\n"
- end
-
- def author_line(author, body)
- "*Created by: #{author}*\n\n#{body}"
- end
- end
-end