diff options
author | Josh Matthews <josh@joshmatthews.net> | 2019-10-07 15:05:48 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-07 15:05:48 -0400 |
commit | 35f19102974d3db5bf3b27e667a6c44248e35a04 (patch) | |
tree | 8eebe3c5ac30243323da9f52f6007a481340e6d0 | |
parent | b94615b3eb0a62db429954c112cc5119e42a64e1 (diff) | |
download | servo-35f19102974d3db5bf3b27e667a6c44248e35a04.tar.gz servo-35f19102974d3db5bf3b27e667a6c44248e35a04.zip |
rustfmt
-rw-r--r-- | components/gfx/platform/macos/font_template.rs | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/components/gfx/platform/macos/font_template.rs b/components/gfx/platform/macos/font_template.rs index 1544f6d9c66..9d9f1fab7a9 100644 --- a/components/gfx/platform/macos/font_template.rs +++ b/components/gfx/platform/macos/font_template.rs @@ -6,7 +6,6 @@ use app_units::Au; use core_foundation::array::CFArray; use core_foundation::base::{CFType, TCFType}; use core_foundation::dictionary::CFDictionary; -use core_foundation::number::CFNumber; use core_foundation::string::CFString; use core_graphics::data_provider::CGDataProvider; use core_graphics::font::CGFont; @@ -103,12 +102,10 @@ impl FontTemplateData { // that one. let attributes: CFDictionary<CFString, CFType> = - CFDictionary::from_CFType_pairs(&[ - ( - CFString::new("NSFontNameAttribute"), - CFString::new(&*self.identifier).as_CFType(), - ), - ]); + CFDictionary::from_CFType_pairs(&[( + CFString::new("NSFontNameAttribute"), + CFString::new(&*self.identifier).as_CFType(), + )]); let descriptor = font_descriptor::new_from_attributes(&attributes); let descriptors = CFArray::from_CFTypes(&[descriptor]); |