Jens
2013-07-12, 05:50
Is there a reason, why semicolons in a line of code are replaced with tabs and spaces? It does not make the code better readble, especially when the statemnet is longer than the following:
VFP:
LOCATE FOR ANSTGKZ = .oAngut.anstgkz AND ;
ANSTNR = .oAngut.anstnr AND ;
ANSTUNR = .oAngut.anstunr
LIANJA after migration:
LOCATE FOR ANSTGKZ = .oAngut.anstgkz AND ANSTNR = .oAngut.anstnr AND ANSTUNR = .oAngut.anstunr
VFP:
LOCATE FOR ANSTGKZ = .oAngut.anstgkz AND ;
ANSTNR = .oAngut.anstnr AND ;
ANSTUNR = .oAngut.anstunr
LIANJA after migration:
LOCATE FOR ANSTGKZ = .oAngut.anstgkz AND ANSTNR = .oAngut.anstnr AND ANSTUNR = .oAngut.anstunr