Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/java/frameworks/debug.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@ package frameworks

import (
"fmt"
"github.com/cloudfoundry/java-buildpack/src/java/common"
"os"
"strconv"

"github.com/cloudfoundry/java-buildpack/src/java/common"
)

// DebugFramework implements Java remote debugging support
Expand All @@ -30,8 +31,7 @@ func (d *DebugFramework) Detect() (string, error) {
return "", nil
}

port := config.getPort()
return fmt.Sprintf("debug=%d", port), nil
return "Remote Debug", nil
}

// Supply performs debug setup during supply phase
Expand Down