diff --git a/cherrypick/lib/src/binding.dart b/cherrypick/lib/src/binding.dart index 1933a65..502f8d3 100644 --- a/cherrypick/lib/src/binding.dart +++ b/cherrypick/lib/src/binding.dart @@ -223,17 +223,17 @@ class Binding { @Deprecated('Use toInstance instead of toInstanceAsync') Binding toInstanceAsync(Instance value) { - return this.toInstance(value); + return toInstance(value); } @Deprecated('Use toProvide instead of toProvideAsync') Binding toProvideAsync(Provider value) { - return this.toProvide(value); + return toProvide(value); } @Deprecated('Use toProvideWithParams instead of toProvideAsyncWithParams') Binding toProvideAsyncWithParams(ProviderWithParams value) { - return this.toProvideWithParams(value); + return toProvideWithParams(value); } /// Marks this binding as singleton (will only create and cache one instance per scope).