Closed GoogleCodeExporter closed 9 years ago
Original comment by tar...@bensiali.net
on 15 Dec 2011 at 1:56
Here is the fix : IF <l> IS INITIAL. CLEAR <l>. CONTINUE. ENDIF. "
Issue 131
Here is the whole method code.
METHOD condense_abap_source.
FIELD-SYMBOLS <l> TYPE ANY.
LOOP AT table ASSIGNING <l>.
IF <l> IS INITIAL. DELETE table. CONTINUE. ENDIF. " Condense
IF <l>(1) = '*'. DELETE table. CONTINUE. ENDIF. " Condense
<l> = conv_abap_line( <l> ). CONDENSE <l>.
IF <l> IS INITIAL. CLEAR <l>. CONTINUE. ENDIF. " Issue 131
IF <l>(1) = '"'. DELETE table. CONTINUE. ENDIF. " commented line like : " comment
ENDLOOP.
ENDMETHOD.
Please confirm it's OK with your case to enable closure of this issue.
Sorry for the inconvenience
Original comment by tar...@bensiali.net
on 15 Dec 2011 at 1:59
I confirm the correction solved the problem.
Thanks for quick fix. Kind regards B.
Original comment by SpatnyN...@gmail.com
on 15 Dec 2011 at 2:14
Thanks for you reply.
Original comment by tar...@bensiali.net
on 15 Dec 2011 at 8:33
Original issue reported on code.google.com by
SpatnyN...@gmail.com
on 15 Dec 2011 at 12:02