From 7dc2dc1af2a2f43eecd8377f391d8d177128ebe3 Mon Sep 17 00:00:00 2001 From: mkaesemann <32765685+mkaesemann@users.noreply.github.com> Date: Mon, 9 Jul 2018 11:32:32 +0200 Subject: [PATCH] Fixed formatting errors Fixed indentation and linter issues --- src/utils/zcl_abapgit_convert.clas.abap | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/utils/zcl_abapgit_convert.clas.abap b/src/utils/zcl_abapgit_convert.clas.abap index f5294e3ad..80e1531c9 100644 --- a/src/utils/zcl_abapgit_convert.clas.abap +++ b/src/utils/zcl_abapgit_convert.clas.abap @@ -66,19 +66,21 @@ CLASS ZCL_ABAPGIT_CONVERT IMPLEMENTATION. "Intialize CASE bitbyte+offset(1). - WHEN '1'. rv_int = 1. + WHEN '1'. + rv_int = 1. ENDCASE. ELSE. CASE bitbyte+offset(1). - WHEN '1'. rv_int = rv_int + ( 2 ** ( sy-index - 1 ) ). + WHEN '1'. + rv_int = rv_int + ( 2 ** ( sy-index - 1 ) ). ENDCASE. ENDIF. offset = offset - 1. "Move Cursor ENDDO. - + ENDMETHOD. "bitbyte_to_int