We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d6781a commit 2ea7334Copy full SHA for 2ea7334
crates/plugins/java/src/maven_plugin.rs
@@ -156,7 +156,7 @@ impl LanguagePlugin for MavenPlugin {
156
let mut components = file_path.iter();
157
let mut in_src = false;
158
let mut in_src_main = false;
159
- while let Some(next) = components.next() {
+ for next in components {
160
if in_src_main {
161
if Path::new(next).extension() == Some(OsStr::new("java")) {
162
let root = file_path
0 commit comments