Skip to content

Commit 676b2df

Browse files
committed
Update ajson filter
1 parent 66e2614 commit 676b2df

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/zcl_settings.clas.abap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ CLASS zcl_settings IMPLEMENTATION.
270270
iv_val = zif_settings~get( ) ).
271271

272272
IF is_complete = abap_false.
273-
ajson = ajson->filter( lcl_ajson_filters=>create_empty_filter( ) ).
273+
ajson = ajson->filter( lcl_ajson_filters_settings=>create_empty_filter( ) ).
274274
ENDIF.
275275

276276
result = ajson->stringify( 2 ).

src/zcl_settings.clas.locals_imp.abap

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
* Same as zcl_ajson_filter_lib=>create_empty_filter( ) but also removing initial numbers and null
2-
CLASS lcl_ajson_filters DEFINITION FINAL.
2+
CLASS lcl_ajson_filters_settings DEFINITION FINAL.
33

44
PUBLIC SECTION.
55

@@ -13,11 +13,11 @@ CLASS lcl_ajson_filters DEFINITION FINAL.
1313

1414
ENDCLASS.
1515

16-
CLASS lcl_ajson_filters IMPLEMENTATION.
16+
CLASS lcl_ajson_filters_settings IMPLEMENTATION.
1717

1818
METHOD create_empty_filter.
1919

20-
result = NEW lcl_ajson_filters( ).
20+
result = NEW lcl_ajson_filters_settings( ).
2121

2222
ENDMETHOD.
2323

0 commit comments

Comments
 (0)