Remove stray print statements

This commit is contained in:
Max Brunsfeld 2021-04-02 15:00:20 -07:00
parent 48d0402aa0
commit dba3c82530
2 changed files with 0 additions and 3 deletions

View file

@ -44,4 +44,3 @@ jobs:
- name: Run tests - name: Run tests
run: cargo test run: cargo test

View file

@ -91,11 +91,9 @@ impl FontSystemState {
let mut font_ids = Vec::new(); let mut font_ids = Vec::new();
for font in self.source.select_family_by_name(name)?.fonts() { for font in self.source.select_family_by_name(name)?.fonts() {
let font = font.load()?; let font = font.load()?;
eprintln!("load font {:?}", font);
font_ids.push(FontId(self.fonts.len())); font_ids.push(FontId(self.fonts.len()));
self.fonts.push(font); self.fonts.push(font);
} }
eprintln!("font ids: {:?}", font_ids);
Ok(font_ids) Ok(font_ids)
} }