chore: remove unnecessary concatenation

This commit is contained in:
^ 2024-03-20 21:38:44 +00:00
parent 8003da94e6
commit 633e35338d

View File

@ -102,7 +102,7 @@ data APPROVE1;
putlog (_all_)(=);
/* convert provided string DIFFTIME back to a numeric SAS datetime */
if "&action" ne "SHOW_DIFFS" then do;
call symputx('DIFFTIME',input(cats(symget('DIFFTIME')),anydtdtm18.));
call symputx('DIFFTIME',input(symget('DIFFTIME'),anydtdtm18.));
end;
length difftime $32;
DIFFTIME=put(&sastime,datetime19.2);