mirror of
https://github.com/abapGit/abapGit.git
synced 2025-05-01 12:20:51 +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.
|
RAISE EXCEPTION TYPE lcx_not_found.
|
||||||
ENDIF.
|
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.
|
ENDMETHOD.
|
||||||
|
|
||||||
METHOD get_next_id.
|
METHOD get_next_id.
|
||||||
|
@ -21511,6 +21506,11 @@ CLASS lcl_persistence_repo IMPLEMENTATION.
|
||||||
IF rs_repo IS INITIAL.
|
IF rs_repo IS INITIAL.
|
||||||
_raise 'Inconsistent repo metadata'.
|
_raise 'Inconsistent repo metadata'.
|
||||||
ENDIF.
|
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.
|
ENDMETHOD.
|
||||||
|
|
||||||
METHOD to_xml.
|
METHOD to_xml.
|
||||||
|
|
Loading…
Reference in New Issue
Block a user