File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
javascript/frameworks/ui5/lib/advanced_security/javascript/frameworks/ui5 Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -140,7 +140,7 @@ class UI5Control extends TUI5Control {
140140 }
141141
142142 /** Holds if this control reads from or writes to a model. */
143- predicate accessesModel ( UI5Model model ) { accessesModel ( model , _) }
143+ predicate accessesModel ( UI5Model model ) { this . accessesModel ( model , _) }
144144
145145 /** Holds if this control reads from or writes to a model with regards to a binding path. */
146146 predicate accessesModel ( UI5Model model , XmlBindingPath bindingPath ) {
@@ -171,12 +171,12 @@ class UI5Control extends TUI5Control {
171171 * is set to true and never set to false anywhere
172172 */
173173 predicate isSanitizedControl ( ) {
174- not this = sanitizeContentSetTo ( false ) and
174+ not this = this . sanitizeContentSetTo ( false ) and
175175 (
176176 this .getControlTypeName ( ) = "sap/ui/richttexteditor/RichTextEditor"
177177 or
178178 this .getControlTypeName ( ) = "sap/ui/core/HTML" and
179- this = sanitizeContentSetTo ( true )
179+ this = this . sanitizeContentSetTo ( true )
180180 )
181181 }
182182
You can’t perform that action at this time.
0 commit comments