From d5e9506d51762e97ce2eb3dcdb430b541ec5b0ec Mon Sep 17 00:00:00 2001 From: Christian Guenter Date: Mon, 4 Jun 2018 07:08:49 +0000 Subject: [PATCH] ECATT: remove empty attributes --- src/objects/zcl_abapgit_object_ecatt_super.clas.abap | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/src/objects/zcl_abapgit_object_ecatt_super.clas.abap b/src/objects/zcl_abapgit_object_ecatt_super.clas.abap index 5ffe039a3..473d79b0b 100644 --- a/src/objects/zcl_abapgit_object_ecatt_super.clas.abap +++ b/src/objects/zcl_abapgit_object_ecatt_super.clas.abap @@ -144,12 +144,9 @@ CLASS zcl_abapgit_object_ecatt_super IMPLEMENTATION. lv_object_type = get_object_type( ). lo_element = ci_document->find_from_name( |{ lv_object_type }| ). - lo_element->set_attribute( name = |SAPRL| - value = || ). - lo_element->set_attribute( name = |DOWNLOADDATE| - value = || ). - lo_element->set_attribute( name = |DOWNLOADTIME| - value = || ). + lo_element->remove_attribute( |SAPRL| ). + lo_element->remove_attribute( |DOWNLOADDATE| ). + lo_element->remove_attribute( |DOWNLOADTIME| ). ENDMETHOD.