Skip to content

Commit 66bfa47

Browse files
Update self-reference.md
1 parent b6678e7 commit 66bfa47

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

docs/checks/self-reference.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,18 @@
1-
# code pal for ABAP
2-
31
[code pal for ABAP](../../README.md) > [Documentation](../check_documentation.md) > [Self-Reference](self-reference.md)
42

53
## Self-Reference
64

75
### What is the Intent of the Check?
86

9-
The "Self-Reference" Check, searches for the usage of self-reference `me->`. Since this self-reference is implicitly set by the system, you should omit it when calling an instance method.
7+
This check searches for the usage of self-reference `me->`. Since this self-reference is implicitly set by the system, you should omit it when calling an instance method.
108

119
### How to solve the issue?
1210

1311
Omitting the self-reference whenever calling an instance method.
1412

1513
### What to do in case of exception?
1614

17-
You can suppress Code Inspector findings generated by this check using the pseudo comment `"#EC SELF_REF`.
18-
The pseudo comment has to be placed after the self-referenced statement.
15+
In exceptional cases, you can suppress this finding by using the pseudo comment `"#EC SELF_REF` which should to be placed after the self-referenced statement:
1916

2017
```abap
2118
DATA(sum) = me->aggregate_values( values ). "#EC SELF_REF

0 commit comments

Comments
 (0)