Skip to content

Commit 12343de

Browse files
committed
chore(git): merge from master
2 parents fd98a35 + 40617fd commit 12343de

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

src/app.rs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ impl App {
162162

163163
impl<SizeGetter> CreateReporter<false> for SizeGetter
164164
where
165-
SizeGetter: GetSizeUtils,
165+
Self: GetSizeUtils,
166166
{
167167
type Reporter = ErrorOnlyReporter<fn(ErrorReport)>;
168168
fn create_reporter(report_error: fn(ErrorReport)) -> Self::Reporter {
@@ -172,12 +172,12 @@ impl App {
172172

173173
impl<SizeGetter> CreateReporter<true> for SizeGetter
174174
where
175-
SizeGetter: GetSizeUtils,
176-
SizeGetter::Size: Into<u64> + Send + Sync,
177-
ProgressReport<SizeGetter::Size>: Default + 'static,
178-
u64: Into<SizeGetter::Size>,
175+
Self: GetSizeUtils,
176+
Self::Size: Into<u64> + Send + Sync,
177+
ProgressReport<Self::Size>: Default + 'static,
178+
u64: Into<Self::Size>,
179179
{
180-
type Reporter = ProgressAndErrorReporter<SizeGetter::Size, fn(ErrorReport)>;
180+
type Reporter = ProgressAndErrorReporter<Self::Size, fn(ErrorReport)>;
181181
fn create_reporter(report_error: fn(ErrorReport)) -> Self::Reporter {
182182
ProgressAndErrorReporter::new(
183183
ProgressReport::TEXT,

0 commit comments

Comments
 (0)