diff --git a/LList.zig b/LList.zig index 822c655..f460127 100644 --- a/LList.zig +++ b/LList.zig @@ -20,9 +20,7 @@ pub fn LList(comptime T: type) type { pub fn deinit(this: *Self) void { - //? If there is no created Node if (this.first == null) { - //? Nothing to do return; }