Remove or prepend underscore _ to unused method arguments
Created by: cirosantilli
- remove
up_dir_path tree
which can be removed - add underscore Devise callbacks to silence Hound in those cases where it cannot be omitted as mentioned at: https://github.com/gitlabhq/gitlabhq/pull/7858#discussion-diff-18063612
Created by: TeatroIO
I've prepared a stage. Click to open.
By Administrator on 2014-09-30T20:32:49 (imported from GitLab project)
15 15 super 16 16 end 17 17 18 def after_sign_up_path_for(resource) 18 def after_sign_up_path_for(_resource) 19 19 new_user_session_path 20 20 end 21 21 22 def after_inactive_sign_up_path_for(resource) 22 def after_inactive_sign_up_path_for(_resource)
Please register or sign in to reply