remove NO_HANDLER pseudo comments when handlers exist (#3846)

* remove NO_HANDLER pseudo comments when handlers exist

* Update zcl_abapgit_url.clas.testclasses.abap
This commit is contained in:
Lars Hvam 2020-09-06 09:07:23 +02:00 committed by GitHub
parent b14a633a96
commit 1668a95b53
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -105,7 +105,7 @@ CLASS ltcl_test IMPLEMENTATION.
TRY. TRY.
zcl_abapgit_url=>validate( 'http://github.com/larshp/Foobar.git' ). zcl_abapgit_url=>validate( 'http://github.com/larshp/Foobar.git' ).
CATCH zcx_abapgit_exception. "#EC NO_HANDLER CATCH zcx_abapgit_exception.
cl_abap_unit_assert=>fail( ). cl_abap_unit_assert=>fail( ).
ENDTRY. ENDTRY.
@ -115,7 +115,7 @@ CLASS ltcl_test IMPLEMENTATION.
TRY. TRY.
zcl_abapgit_url=>validate( 'https://github.com/larshp/Foobar.git' ). zcl_abapgit_url=>validate( 'https://github.com/larshp/Foobar.git' ).
CATCH zcx_abapgit_exception. "#EC NO_HANDLER CATCH zcx_abapgit_exception.
cl_abap_unit_assert=>fail( ). cl_abap_unit_assert=>fail( ).
ENDTRY. ENDTRY.