Skip to content

Commit

Permalink
remove unused type parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
LaurenzV committed Aug 30, 2024
1 parent bcd4dd1 commit be51bb8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/surface.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ impl<'a> Surface<'a> {
.stroke_path(path, stroke, self.sc);
}

pub fn fill_glyphs<'b, T>(
pub fn fill_glyphs<T>(
&mut self,
start: Point,
fill: Fill<T>,
Expand All @@ -80,7 +80,7 @@ impl<'a> Surface<'a> {
.fill_glyphs(start, self.sc, fill, glyphs, font, text);
}

pub fn stroke_glyphs<'b, T>(
pub fn stroke_glyphs<T>(
&mut self,
start: Point,
stroke: Stroke<T>,
Expand Down

0 comments on commit be51bb8

Please sign in to comment.