From 26524a98317e2c42bb4cc50511face8745e19fb9 Mon Sep 17 00:00:00 2001 From: tigercosmos Date: Mon, 25 Dec 2017 05:12:41 -0600 Subject: [PATCH] servo: Merge #19642 - cleanup no need cfg target_os (from tigercosmos:c1); r=emilio Already in macos, no need cfg target_os --- - [X] `./mach build -d` does not report any errors - [X] `./mach test-tidy` does not report any errors - [ ] These changes fix #__ (github issue number if applicable). - [ ] There are tests for these changes OR - [ ] These changes do not require tests because _____ Source-Repo: https://github.com/servo/servo Source-Revision: d49cb8a47812c0e8ae25643e5437e212f5cbee16 --HG-- extra : subtree_source : https%3A//hg.mozilla.org/projects/converted-servo-linear extra : subtree_revision : b8fbbea34c7660db93f1de9b6220c57e55cf336f --- servo/components/gfx/platform/macos/font_list.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/servo/components/gfx/platform/macos/font_list.rs b/servo/components/gfx/platform/macos/font_list.rs index c0800f94c237..ed3858a8466b 100644 --- a/servo/components/gfx/platform/macos/font_list.rs +++ b/servo/components/gfx/platform/macos/font_list.rs @@ -42,6 +42,4 @@ pub fn last_resort_font_families() -> Vec { vec!("Arial Unicode MS".to_owned(), "Arial".to_owned()) } -#[cfg(target_os = "macos")] pub static SANS_SERIF_FONT_FAMILY: &'static str = "Helvetica"; -