Skip to content

Commit

Permalink
fix: fix merge errors
Browse files Browse the repository at this point in the history
  • Loading branch information
MC-XiaoHei committed Jun 15, 2024
1 parent e1988f4 commit 1aec4fe
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,11 @@ class GradleTaskManager : GradleTaskManagerExtension {
jvmParametersSetup: String?,
listener: ExternalSystemTaskNotificationListener,
): Boolean {
println("taskname: $taskNames, projectPath: $projectPath, settings: $settings, jvmParametersSetup: $jvmParametersSetup, listener: $listener")
taskNames.forEach {
if(it.startsWith("apply") && it.endsWith("Patches")) {

Check warning on line 18 in src/main/kotlin/cn/xor7/xiaohei/leavesknife/listeners/GradleTaskManager.kt

View workflow job for this annotation

GitHub Actions / Qodana Community for JVM

Control flow with empty body

'if' has empty body
// start listen
}
}
return super.executeTasks(id, taskNames, projectPath, settings, jvmParametersSetup, listener)
}

Expand Down

0 comments on commit 1aec4fe

Please sign in to comment.