From: Marius Balteanu Date: Sun, 2 Oct 2022 12:47:33 +0000 (+0000) Subject: Fix rubocop warning (#37626). X-Git-Tag: 5.1.0~390 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=5b78b045b1060263f7c6251e5da24ba6c9b3670b;p=redmine.git Fix rubocop warning (#37626). git-svn-id: https://svn.redmine.org/redmine/trunk@21886 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/controllers/repositories_controller.rb b/app/controllers/repositories_controller.rb index 003fb3b6c..0493d587e 100644 --- a/app/controllers/repositories_controller.rb +++ b/app/controllers/repositories_controller.rb @@ -286,7 +286,7 @@ class RepositoriesController < ApplicationController @changeset = @repository.find_changeset_by_name(@rev) @changeset_to = @rev_to ? @repository.find_changeset_by_name(@rev_to) : nil @diff_format_revisions = @repository.diff_format_revisions(@changeset, @changeset_to) - # ToDo: Fix DEPRECATION WARNING: Rendering actions with '.' in the name is deprecated + # TODO: Fix DEPRECATION WARNING: Rendering actions with '.' in the name is deprecated render :diff, :formats => :html, :layout => 'base.html.erb' end end