Skip to content

Commit 94c0d3e

Browse files
committed
Clippy
1 parent 2ea7334 commit 94c0d3e

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

crates/plugins/java/src/maven_plugin.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ impl LanguagePlugin for MavenPlugin {
153153
let root = iter.with_next(|file| {
154154
let file_path = file.path()?;
155155

156-
let mut components = file_path.iter();
156+
let components = file_path.iter();
157157
let mut in_src = false;
158158
let mut in_src_main = false;
159159
for next in components {

crates/tmc-langs/src/submission_packaging.rs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -76,11 +76,6 @@ pub fn prepare_submission(
7676
// This code branch is used when we package a submission for the sandbox. We use the clone path because it contains the hidden tests, and we want the sandbox to run them.
7777
for entry in WalkDir::new(stub_clone_path).min_depth(1) {
7878
let entry = entry?;
79-
log::info!(
80-
"processing entry in stub clone path {}",
81-
entry.path().display()
82-
);
83-
8479
// do not take student files from stub
8580
if policy.is_student_file(entry.path())
8681
|| entry.path().components().any(|c| {

0 commit comments

Comments
 (0)