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/helpers/json_helper.rb')
-rw-r--r--app/helpers/json_helper.rb14
1 files changed, 0 insertions, 14 deletions
diff --git a/app/helpers/json_helper.rb b/app/helpers/json_helper.rb
deleted file mode 100644
index 2a1a6272cc9..00000000000
--- a/app/helpers/json_helper.rb
+++ /dev/null
@@ -1,14 +0,0 @@
-# frozen_string_literal: true
-
-module JsonHelper
- # These two JSON helpers are short-form wrappers for the Gitlab::Json
- # class, which should be used in place of .to_json calls or calls to
- # the JSON class.
- def json_generate(...)
- Gitlab::Json.generate(...)
- end
-
- def json_parse(...)
- Gitlab::Json.parse(...)
- end
-end