diff --git a/lib/gitlab/import_export/json_hash_builder.rb b/lib/gitlab/import_export/json_hash_builder.rb
index b7db0e7a06ad29d7d5f08a738e70f9fe200722fe..0cc10f4008712da59483bea5ce4efba8922a8cf6 100644
--- a/lib/gitlab/import_export/json_hash_builder.rb
+++ b/lib/gitlab/import_export/json_hash_builder.rb
@@ -57,17 +57,17 @@ module Gitlab
       # +value+ existing model to be included in the hash
       # +json_config_hash+ the original hash containing the root model
       def create_model_value(current_key, value, json_config_hash)
-        json_config_hash[current_key] = parse_hash(value, { include: value })
+        json_config_hash[current_key] = parse_hash(value) || { include: value }
       end
 
       # Calls attributes finder to parse the hash and add any attributes to it
       #
       # +value+ existing model to be included in the hash
       # +parsed_hash+ the original hash
-      def parse_hash(value, parsed_hash)
+      def parse_hash(value)
         @attributes_finder.parse(value) do |hash|
           { include: hash_or_merge(value, hash) }
-        end || parsed_hash
+        end
       end
 
       # Adds new model configuration to an existing hash with key +current_key+