From 6d8b9b9c71e45fd1c887545b579399931dc2466e Mon Sep 17 00:00:00 2001 From: Loren Segal Date: Thu, 27 Jun 2019 00:35:31 -0700 Subject: [PATCH] Remove unnecessary debug line --- lib/yard/server/commands/static_file_helpers.rb | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/yard/server/commands/static_file_helpers.rb b/lib/yard/server/commands/static_file_helpers.rb index 9576b9b2d..285fc8168 100644 --- a/lib/yard/server/commands/static_file_helpers.rb +++ b/lib/yard/server/commands/static_file_helpers.rb @@ -47,7 +47,6 @@ def find_file(adapter, url) file = nil ([adapter.document_root] + static_paths.reverse).compact.each do |path_prefix| file = File.join(path_prefix, url) - p file break if File.exist?(file) file = nil end