@@ -203,12 +203,6 @@ pub(crate) fn database(args: TokenStream, input: TokenStream) -> TokenStream {
203203
204204 output. extend ( has_group_impls) ;
205205
206- if std:: env:: var ( "SALSA_DUMP" ) . is_ok ( ) {
207- println ! ( "~~~ database_storage" ) ;
208- println ! ( "{}" , output) ;
209- println ! ( "~~~ database_storage" ) ;
210- }
211-
212206 output. into ( )
213207}
214208
@@ -218,7 +212,7 @@ struct QueryGroupList {
218212}
219213
220214impl Parse for QueryGroupList {
221- fn parse ( input : ParseStream ) -> syn:: Result < Self > {
215+ fn parse ( input : ParseStream < ' _ > ) -> syn:: Result < Self > {
222216 let query_groups: PunctuatedQueryGroups =
223217 input. parse_terminated ( QueryGroup :: parse, Token ! [ , ] ) ?;
224218 Ok ( QueryGroupList { query_groups } )
@@ -241,7 +235,7 @@ impl Parse for QueryGroup {
241235 /// ```ignore
242236 /// impl HelloWorldDatabase;
243237 /// ```
244- fn parse ( input : ParseStream ) -> syn:: Result < Self > {
238+ fn parse ( input : ParseStream < ' _ > ) -> syn:: Result < Self > {
245239 let group_path: Path = input. parse ( ) ?;
246240 Ok ( QueryGroup { group_path } )
247241 }
@@ -250,7 +244,7 @@ impl Parse for QueryGroup {
250244struct Nothing ;
251245
252246impl Parse for Nothing {
253- fn parse ( _input : ParseStream ) -> syn:: Result < Self > {
247+ fn parse ( _input : ParseStream < ' _ > ) -> syn:: Result < Self > {
254248 Ok ( Nothing )
255249 }
256250}
0 commit comments