Commit 57fde5a8 authored by Robert Speicher's avatar Robert Speicher

Merge branch '15584-remove-back-compat-code' into 'master'

Remove back-compat code that's not needed anymore

Solves #15584.

See merge request !4187
parents 08fddae7 4e58aa40
......@@ -124,11 +124,7 @@ module ProjectsHelper
end
def license_short_name(project)
no_license_key = project.repository.license_key.nil? ||
# Back-compat if cache contains 'no-license', can be removed in a few weeks
project.repository.license_key == 'no-license'
return 'LICENSE' if no_license_key
return 'LICENSE' if project.repository.license_key.nil?
license = Licensee::License.new(project.repository.license_key)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment