mirror of
https://github.com/abap2xlsx/abap2xlsx.git
synced 2025-05-05 05:04:11 +08:00
update abaplint configuration to latest (#798)
This commit is contained in:
parent
8abf2adf9f
commit
5fa4f838b6
|
@ -19,6 +19,11 @@
|
|||
"globalMacros": []
|
||||
},
|
||||
"rules": {
|
||||
"constant_classes": true,
|
||||
"cyclic_oo": false,
|
||||
"many_parentheses": true,
|
||||
"pragma_placement": true,
|
||||
"unused_ddic": false,
|
||||
"dangerous_statement": true,
|
||||
"db_operation_in_loop": false,
|
||||
"identical_descriptions": false,
|
||||
|
@ -37,7 +42,6 @@
|
|||
"call_transaction_authority_check": true,
|
||||
"function_module_recommendations": false,
|
||||
"identical_contents": false,
|
||||
"many_parenthesis": false,
|
||||
"method_overwrites_builtin": true,
|
||||
"omit_parameter_name": false,
|
||||
"omit_receiving": true,
|
||||
|
|
|
@ -41,8 +41,7 @@ CLASS zcl_date_calculation IMPLEMENTATION.
|
|||
|
||||
e_month = 0.
|
||||
|
||||
CHECK NOT ( i_date_from IS INITIAL )
|
||||
AND NOT ( i_date_to IS INITIAL ).
|
||||
CHECK i_date_from IS NOT INITIAL AND i_date_to IS NOT INITIAL.
|
||||
|
||||
date_to = i_date_to.
|
||||
IF i_incl_to = abap_true.
|
||||
|
|
Loading…
Reference in New Issue
Block a user