From 1945146c41a429c9cd47cd1b95678c7fd2efbb67 Mon Sep 17 00:00:00 2001 From: "Brian L. Troutwine" Date: Wed, 23 Oct 2024 17:14:16 -0700 Subject: [PATCH] clippy fixes Signed-off-by: Brian L. Troutwine --- lading/src/generator/file_gen/model.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lading/src/generator/file_gen/model.rs b/lading/src/generator/file_gen/model.rs index 188ffd08e..d87fde12f 100644 --- a/lading/src/generator/file_gen/model.rs +++ b/lading/src/generator/file_gen/model.rs @@ -53,10 +53,6 @@ pub struct File { /// number is 0, if foo.log.1 then 1 etc. ordinal: u8, - /// The peer of this file, the next in line in rotation. So, if this file is - /// foo.log the peer will be foo.log.1 and its peer foo.log.2 etc. - peer: Option, - /// The group ID of this File. So for instance all File instances that are /// called foo.log, foo.log.1 etc have the same group ID. group_id: u8,