mirror of
https://github.com/github/codeql.git
synced 2026-02-10 20:21:10 +01:00
add explicit this qualifier on all of java
This commit is contained in:
@@ -58,10 +58,10 @@ class ManagementSecurityConfig extends ApplicationProperties {
|
||||
string getValue() { result = this.getValueElement().getValue().trim() }
|
||||
|
||||
/** Holds if `management.security.enabled` is set to `false`. */
|
||||
predicate hasSecurityDisabled() { getValue() = "false" }
|
||||
predicate hasSecurityDisabled() { this.getValue() = "false" }
|
||||
|
||||
/** Holds if `management.security.enabled` is set to `true`. */
|
||||
predicate hasSecurityEnabled() { getValue() = "true" }
|
||||
predicate hasSecurityEnabled() { this.getValue() = "true" }
|
||||
}
|
||||
|
||||
/** The configuration property `management.endpoints.web.exposure.include`. */
|
||||
|
||||
Reference in New Issue
Block a user