mirror of
https://github.com/abapGit/abapGit.git
synced 2025-05-01 20:32:26 +08:00

* Implementation - Create new class ZCL_ABAPGIT_GIT_COMMIT - Move commit-specific methods from ZCL_ABAPGIT_BRANCH_OVERVIEW to ZCL_ABAPGIT_GIT_COMMIT - Change methods visibility (from private to public) and type (from instance to class method) * Remove ##NO_TEXT Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com> * Rename get to get_from_remote * abapLint: Remove space Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com> * abapLint - Remove space - Remove unused type in ZCL_ABAPGIT_BRANCH_OVERVIEW * abapLint: Remove space Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com> * Remove obsolete class attribute * Separate get_by_branch and get_by_commit * Remove duplicate char Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com> * Remove iv_repo_name; replace its usage by url Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com> Co-authored-by: Lars Hvam <larshp@hotmail.com>
20 lines
273 B
ABAP
20 lines
273 B
ABAP
|
|
CLASS ltcl_test DEFINITION DEFERRED.
|
|
CLASS zcl_abapgit_branch_overview DEFINITION LOCAL FRIENDS ltcl_test.
|
|
|
|
|
|
CLASS ltcl_test DEFINITION FOR TESTING
|
|
DURATION SHORT
|
|
RISK LEVEL HARMLESS FINAL.
|
|
|
|
PRIVATE SECTION.
|
|
|
|
ENDCLASS.
|
|
|
|
|
|
CLASS ltcl_test IMPLEMENTATION.
|
|
|
|
|
|
|
|
ENDCLASS.
|