Skip to content

Commit 3b7b1e1

Browse files
committed
comments clean-up
1 parent 1e99b2a commit 3b7b1e1

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

core/src/main/kotlin/org/evomaster/core/problem/httpws/HttpWsCallResult.kt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ abstract class HttpWsCallResult : EnterpriseActionResult {
2626
const val APPLIED_LINK = "APPLIED_LINK"
2727
const val LOCATION = "LOCATION"
2828

29-
// TODO: Seran, add new entry for SSRF detection. boolean?
3029
const val VULNERABLE_SSRF = "VULNERABLE_SSRF"
3130
}
3231

@@ -123,7 +122,7 @@ abstract class HttpWsCallResult : EnterpriseActionResult {
123122
fun getAppliedLink(): Boolean = getResultValue(APPLIED_LINK)?.toBoolean() ?: false
124123

125124
/**
126-
* FIXME: When dealing with additional vulnerabilities, consider changing the data structure.
125+
* TODO: When dealing with additional vulnerabilities, consider changing the data structure.
127126
*/
128127
fun setVulnerableForSSRF(on: Boolean) = addResultValue(VULNERABLE_SSRF, on.toString())
129128
fun getVulnerableForSSRF() : Boolean = getResultValue(VULNERABLE_SSRF)?.toBoolean() ?: false

0 commit comments

Comments
 (0)