@@ -510,11 +510,11 @@ unsafe impl ReadOnlySystemParamFetch for WorldState {}
510
510
#[ doc( hidden) ]
511
511
pub struct WorldState ;
512
512
513
- impl < ' w , ' s > SystemParam for & ' w World {
513
+ impl < ' w > SystemParam for & ' w World {
514
514
type Fetch = WorldState ;
515
515
}
516
516
517
- unsafe impl < ' w , ' s > SystemParamState for WorldState {
517
+ unsafe impl SystemParamState for WorldState {
518
518
fn init ( _world : & mut World , system_meta : & mut SystemMeta ) -> Self {
519
519
let mut access = Access :: default ( ) ;
520
520
access. read_all ( ) ;
@@ -1365,7 +1365,7 @@ impl<'w, 's, P: SystemParam> StaticSystemParam<'w, 's, P> {
1365
1365
pub struct StaticSystemParamState < S , P > ( S , PhantomData < fn ( ) -> P > ) ;
1366
1366
1367
1367
// Safe: This doesn't add any more reads, and the delegated fetch confirms it
1368
- unsafe impl < ' w , ' s , S : ReadOnlySystemParamFetch , P > ReadOnlySystemParamFetch
1368
+ unsafe impl < S : ReadOnlySystemParamFetch , P > ReadOnlySystemParamFetch
1369
1369
for StaticSystemParamState < S , P >
1370
1370
{
1371
1371
}
@@ -1394,7 +1394,7 @@ where
1394
1394
}
1395
1395
}
1396
1396
1397
- unsafe impl < ' w , ' s , S : SystemParamState , P : SystemParam + ' static > SystemParamState
1397
+ unsafe impl < S : SystemParamState , P : SystemParam + ' static > SystemParamState
1398
1398
for StaticSystemParamState < S , P >
1399
1399
{
1400
1400
fn init ( world : & mut World , system_meta : & mut SystemMeta ) -> Self {
0 commit comments