From 702e64edde967fce91f605e2a1396f25f3a01f9d Mon Sep 17 00:00:00 2001
From: Erik Huizinga <erikhuizinga@users.noreply.github.com>
Date: Tue, 7 Jan 2025 11:23:30 +0100
Subject: [PATCH] Remove echo from gradle plugin

When using this plugin and running e.g. `gradle --quiet`, the echo statement would print to stdout. I figured that I could make it respect the `--quiet` flag (and possibly various other situations in which echoing isn't expected to print to stdout), but as a much simpler approach it can also be removed altogether unless there is a reason to keep it.
---
 plugins/gradle/gradle.plugin.zsh | 1 -
 1 file changed, 1 deletion(-)

diff --git a/plugins/gradle/gradle.plugin.zsh b/plugins/gradle/gradle.plugin.zsh
index dacc46478..4f457055a 100644
--- a/plugins/gradle/gradle.plugin.zsh
+++ b/plugins/gradle/gradle.plugin.zsh
@@ -15,7 +15,6 @@ function gradle-or-gradlew() {
 
   # if gradlew found, run it instead of gradle
   if [[ -f "$project_root/gradlew" ]]; then
-    echo "executing gradlew instead of gradle"
     "$project_root/gradlew" "$@"
   else
     command gradle "$@"