File tree Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -888,15 +888,13 @@ class SerializationWriter {
888
888
889
889
/* Work out original object's SC location. */
890
890
let origSCIdx = this . getSCId ( origSC ) ;
891
- let origIdx = isST != 0
892
- ? origSC . rootSTables . indexOf ( this . sc . rootSTables [ objIdx ] )
893
- : origSC . rootObjects . indexOf ( this . sc . rootObjects [ objIdx ] ) ;
891
+ let origIdx = isST != 0 ?
892
+ origSC . rootSTables . indexOf ( this . sc . rootSTables [ objIdx ] ) :
893
+ origSC . rootObjects . indexOf ( this . sc . rootObjects [ objIdx ] ) ;
894
894
895
895
if ( origIdx < 0 )
896
- throw "Could not find object when writing repossessions; " +
897
- ( isST != 0
898
- ? "STable"
899
- : "REPR = " + this . sc . rootObjects [ objIdx ] . _STable . REPR . name ) ;
896
+ throw 'Could not find object when writing repossessions; ' +
897
+ ( isST != 0 ? 'STable' : 'REPR = ' + this . sc . rootObjects [ objIdx ] . _STable . REPR . name ) ;
900
898
901
899
/* Write table row. */
902
900
this . repossessionsData . I32 ( isST ) ;
You can’t perform that action at this time.
0 commit comments