mirror of
https://github.com/abapGit/abapGit.git
synced 2025-04-30 20:03:20 +08:00
bugfix
This commit is contained in:
parent
97a6131267
commit
537be607ca
|
@ -21451,11 +21451,6 @@ CLASS lcl_persistence_repo IMPLEMENTATION.
|
|||
RAISE EXCEPTION TYPE lcx_not_found.
|
||||
ENDIF.
|
||||
|
||||
* field master_language is new, so default it for old repositories
|
||||
IF rs_repo-master_language IS INITIAL.
|
||||
rs_repo-master_language = sy-langu.
|
||||
ENDIF.
|
||||
|
||||
ENDMETHOD.
|
||||
|
||||
METHOD get_next_id.
|
||||
|
@ -21511,6 +21506,11 @@ CLASS lcl_persistence_repo IMPLEMENTATION.
|
|||
IF rs_repo IS INITIAL.
|
||||
_raise 'Inconsistent repo metadata'.
|
||||
ENDIF.
|
||||
|
||||
* field master_language is new, so default it for old repositories
|
||||
IF rs_repo-master_language IS INITIAL.
|
||||
rs_repo-master_language = sy-langu.
|
||||
ENDIF.
|
||||
ENDMETHOD.
|
||||
|
||||
METHOD to_xml.
|
||||
|
|
Loading…
Reference in New Issue
Block a user