Skip to content

Commit 46b0596

Browse files
Update deprecated-classes.md
1 parent e9f71a7 commit 46b0596

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/checks/deprecated-classes.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@ This check searches for the usage of deprecated classes. For instance:
1616
```abap
1717
DATA aunit TYPE REF TO cl_aunit_assert.
1818
```
19-
### Which attributes can be maintained?
20-
21-
![Attributes](./imgs/deprecated_key_words.png)
2219

2320
### How to solve the issue?
2421

2522
Reference non deprecated newer objects instead. For the above example, a corrected code would look like:
2623
```abap
2724
DATA aunit TYPE REF TO cl_abap_unit_assert.
2825
```
26+
### Which attributes can be maintained?
27+
28+
![Attributes](./imgs/deprecated_key_words.png)
2929

3030
### What to do in case of exception?
3131

0 commit comments

Comments
 (0)