Skip to content

Commit

Permalink
Remove redundant imports to fix CI (#1876)
Browse files Browse the repository at this point in the history
  • Loading branch information
senekor authored Mar 27, 2024
1 parent 88fce47 commit d8b7fb2
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 5 deletions.
2 changes: 1 addition & 1 deletion exercises/practice/poker/.meta/example.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use std::cmp::Ordering;
use std::fmt;
use std::{cmp::Ordering, convert::TryFrom};

use counter::Counter;

Expand Down
2 changes: 0 additions & 2 deletions exercises/practice/simple-linked-list/.meta/example.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
use std::iter::FromIterator;

pub struct SimpleLinkedList<T> {
head: Option<Box<Node<T>>>,
len: usize,
Expand Down
2 changes: 0 additions & 2 deletions exercises/practice/simple-linked-list/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
use std::iter::FromIterator;

pub struct SimpleLinkedList<T> {
// Delete this field
// dummy is needed to avoid unused parameter error during compilation
Expand Down

0 comments on commit d8b7fb2

Please sign in to comment.