DFRefactor removed the guts of a struct

Code:
        Struct tSaleType
            String SaleType
            Integer Trx
            Number Amount
            Integer NegTrx
            Number NegAmount
            String CrSaleType
            String CashDrwSum
            String Group
            String Blocked
            String TrxFound
        End_Struct


        tSaleType[] aSaleType


        String sFileName sCurrency sSalesType sCcy sCrSaleType sGroup sPathWrkKirk1
        Date dDate
became

Code:
        Struct tSaleType
        End_Struct


        tSaleType[] aSaleType


        String sFileName sSalesType sCcy sCrSaleType sGroup sPathWrkKirk1
        Date dDate

the struct definition was actually within a procedure, which wouldn't be my approach, but still..

BTW, I've written something to convert INSERT and REPLACE commends to functions. It is fairly amateurish but it worked. If you want it to plug into dfrefactor you're welcome to try and knock it into shape