scovich commented on PR #8511:
URL: https://github.com/apache/arrow-rs/pull/8511#issuecomment-3366135849

   Aside: When compiling with 1.85, I get a lot of clippy warnings of the form:
   ```
   warning: the following explicit lifetimes could be elided: 'a
       --> arrow-avro/src/writer/encoder.rs:1330:6
        |
   1330 | impl<'a, P: ArrowPrimitiveType + IntervalToDurationParts> 
DurationEncoder<'a, P> {
        |      ^^                                                               
    ^^
        |
        = help: for further information visit 
https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
   help: elide the lifetimes
        |
   1330 - impl<'a, P: ArrowPrimitiveType + IntervalToDurationParts> 
DurationEncoder<'a, P> {
   1330 + impl<P: ArrowPrimitiveType + IntervalToDurationParts> 
DurationEncoder<'_, P> {
        |
   ```
   ... which seems very legit, I wonder why clippy 1.90 doesn't flag them?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to