diff options
author | tiagonbotelho <tiagonbotelho@hotmail.com> | 2016-07-05 09:46:48 +0100 |
---|---|---|
committer | tiagonbotelho <tiagonbotelho@hotmail.com> | 2016-07-12 15:34:44 +0100 |
commit | 71bab5fe58e6b408c67ea681cba371459ae40e7b (patch) | |
tree | dafda2eed2662a9a5f1ff01aa6fd99c7e7eeac79 /app/services | |
parent | e621fb57c4c40bc05cfc2c88a1a7b2493cafc2f4 (diff) | |
download | gitlab-ce-71bab5fe58e6b408c67ea681cba371459ae40e7b.tar.gz |
removes debugging prints from code
Diffstat (limited to 'app/services')
-rw-r--r-- | app/services/files/update_service.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/services/files/update_service.rb b/app/services/files/update_service.rb index fefa1d4ef68..41add13af50 100644 --- a/app/services/files/update_service.rb +++ b/app/services/files/update_service.rb @@ -3,6 +3,7 @@ require_relative "base_service" module Files class UpdateService < Files::BaseService def commit + repository.update_file(current_user, @file_path, @previous_path, @file_content, @commit_message, @target_branch, true) end end |