if (workingDirectory == currentDirectory) {
log.debug("
Searching for files matching glob pattern #filePattern with working directory:
\"#{workingDirectory.normalizedLocation}\"
"p)
} else {
log.debug("
Searching for files matching glob pattern #filePattern in
\"#{currentDirectory.normalizedLocation}\" with working directory:
\"#{workingDirectory.normalizedLocation}\"
"p)
}
this is the equivalent of:
if (workingDirectory == currentDirectory) {
log.debug("Searching for files matching glob pattern #filePattern with working directory: \"#{workingDirectory.normalizedLocation}\"")
} else {
log.debug("Searching for files matching glob pattern #filePattern in \"#{currentDirectory.normalizedLocation}\" with working directory: \"#{workingDirectory.normalizedLocation}\"")
}
Something like:
this is the equivalent of: