We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51d7ffc commit 1a3a0d4Copy full SHA for 1a3a0d4
1 file changed
src/java/frameworks/debug.go
@@ -2,9 +2,10 @@ package frameworks
2
3
import (
4
"fmt"
5
- "github.com/cloudfoundry/java-buildpack/src/java/common"
6
"os"
7
"strconv"
+
8
+ "github.com/cloudfoundry/java-buildpack/src/java/common"
9
)
10
11
// DebugFramework implements Java remote debugging support
@@ -30,8 +31,7 @@ func (d *DebugFramework) Detect() (string, error) {
30
31
return "", nil
32
}
33
- port := config.getPort()
34
- return fmt.Sprintf("debug=%d", port), nil
+ return "Remote Debug", nil
35
36
37
// Supply performs debug setup during supply phase
0 commit comments