Explorar el Código

Removed un-needed clone on lock_timeout

Because it's a Primative, it doesn't need to be cloned.
Apollo hace 4 meses
padre
commit
fb7135e0cb
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/shared.rs

+ 1 - 1
src/shared.rs

@@ -12,7 +12,7 @@ impl<T> Clone for Shared<T> {
     fn clone(&self) -> Self {
         Self {
             data: self.data.clone(),
-            lock_timeout: self.lock_timeout.clone(),
+            lock_timeout: self.lock_timeout,
         }
     }
 }