class Dependabot::Uv::FileUpdater::CompileFileUpdater
def post_process_compiled_file(updated_content, file)
def post_process_compiled_file(updated_content, file) content = replace_header_with_original(updated_content, file.content) content = remove_new_warnings(content, file.content) content = update_hashes_if_required(content, file.content) replace_absolute_file_paths(content, file.content) end