]> source.dussan.org Git - redmine.git/commitdiff
use "do end" instead of {} at ImportsController
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Fri, 6 Nov 2020 13:01:00 +0000 (13:01 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Fri, 6 Nov 2020 13:01:00 +0000 (13:01 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@20279 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/controllers/imports_controller.rb

index d234604f69efba7f4b7aefce18fa497cb705c533..54defb8555d19f5e676b9661515bb9994fd72ca5 100644 (file)
@@ -70,13 +70,13 @@ class ImportsController < ApplicationController
       auto_map_fields
     elsif request.post?
       respond_to do |format|
-        format.html {
+        format.html do
           if params[:previous]
             redirect_to import_settings_path(@import)
           else
             redirect_to import_run_path(@import)
           end
-        }
+        end
         format.js # updates mapping form on project or tracker change
       end
     end
@@ -89,13 +89,13 @@ class ImportsController < ApplicationController
         :max_time => 10.seconds
       )
       respond_to do |format|
-        format.html {
+        format.html do
           if @import.finished?
             redirect_to import_path(@import)
           else
             redirect_to import_run_path(@import)
           end
-        }
+        end
         format.js
       end
     end