From dba3c82530b9869cceb878c00cdf5ff4bdbe80e0 Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Fri, 2 Apr 2021 15:00:20 -0700 Subject: [PATCH] Remove stray print statements --- .github/workflows/ci.yml | 1 - gpui/src/platform/mac/fonts.rs | 2 -- 2 files changed, 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 15df90c2c2..b177817a36 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -44,4 +44,3 @@ jobs: - name: Run tests run: cargo test - diff --git a/gpui/src/platform/mac/fonts.rs b/gpui/src/platform/mac/fonts.rs index 609a5021da..9fcc4852bf 100644 --- a/gpui/src/platform/mac/fonts.rs +++ b/gpui/src/platform/mac/fonts.rs @@ -91,11 +91,9 @@ impl FontSystemState { let mut font_ids = Vec::new(); for font in self.source.select_family_by_name(name)?.fonts() { let font = font.load()?; - eprintln!("load font {:?}", font); font_ids.push(FontId(self.fonts.len())); self.fonts.push(font); } - eprintln!("font ids: {:?}", font_ids); Ok(font_ids) }