Align code, compare operators #2670 (#2702)

* Update abaplint.json

* UDMO change compare operator
This commit is contained in:
Lars Hvam 2019-05-26 03:38:54 -07:00 committed by GitHub
parent 35393675e1
commit 0f7fb3658a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -226,7 +226,7 @@
"exclude": [] "exclude": []
}, },
"preferred_compare_operator": { "preferred_compare_operator": {
"enabled": false, "enabled": true,
"exclude": [], "exclude": [],
"badOperators": [ "badOperators": [
"EQ", "EQ",

View File

@ -504,7 +504,7 @@ CLASS ZCL_ABAPGIT_OBJECT_UDMO IMPLEMENTATION.
ENDLOOP. ENDLOOP.
" You are reminded that long texts do not have to be in existence " You are reminded that long texts do not have to be in existence
IF lines( lt_udmo_long_texts ) GT 0. IF lines( lt_udmo_long_texts ) > 0.
io_xml->add( iv_name = 'UDMO_LONG_TEXTS' io_xml->add( iv_name = 'UDMO_LONG_TEXTS'
ig_data = lt_udmo_long_texts ). ig_data = lt_udmo_long_texts ).
ENDIF. ENDIF.
@ -558,7 +558,7 @@ CLASS ZCL_ABAPGIT_OBJECT_UDMO IMPLEMENTATION.
ORDER BY sprache ASCENDING. "#EC CI_NOFIRST ORDER BY sprache ASCENDING. "#EC CI_NOFIRST
" You are reminded that descriptions in other languages do not have to be in existence. " You are reminded that descriptions in other languages do not have to be in existence.
IF lines( lt_udmo_texts ) GT 0. IF lines( lt_udmo_texts ) > 0.
io_xml->add( iv_name = 'UDMO_TEXTS' io_xml->add( iv_name = 'UDMO_TEXTS'
ig_data = lt_udmo_texts ). ig_data = lt_udmo_texts ).
ENDIF. ENDIF.