File tree Expand file tree Collapse file tree 5 files changed +9
-9
lines changed
Expand file tree Collapse file tree 5 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 2828
2929public class UnitOfWork extends com .backendless .transaction .UnitOfWork implements IUnitOfWork
3030{
31- private final List <Operation > operations ;
31+ private final List <Operation <?> > operations ;
3232
3333 private final UnitOfWorkCreate unitOfWorkCreate ;
3434 private final UnitOfWorkUpdate unitOFWorkUpdate ;
Original file line number Diff line number Diff line change @@ -19,9 +19,9 @@ public class RelationOperationImpl implements RelationOperation
1919 AtomicInteger countSetRelation = new AtomicInteger ( 1 );
2020 AtomicInteger countDeleteRelation = new AtomicInteger ( 1 );
2121
22- private final List <Operation > operations ;
22+ private final List <Operation <?> > operations ;
2323
24- public RelationOperationImpl ( List <Operation > operations )
24+ public RelationOperationImpl ( List <Operation <?> > operations )
2525 {
2626 this .operations = operations ;
2727 }
Original file line number Diff line number Diff line change @@ -15,9 +15,9 @@ public class UnitOfWorkCreateImpl implements UnitOfWorkCreate
1515 AtomicInteger countCreate = new AtomicInteger ( 1 );
1616 AtomicInteger countCreateBulk = new AtomicInteger ( 1 );
1717
18- private final List <Operation > operations ;
18+ private final List <Operation <?> > operations ;
1919
20- public UnitOfWorkCreateImpl ( List <Operation > operations )
20+ public UnitOfWorkCreateImpl ( List <Operation <?> > operations )
2121 {
2222 this .operations = operations ;
2323 }
Original file line number Diff line number Diff line change @@ -17,9 +17,9 @@ public class UnitOfWorkDeleteImpl implements UnitOfWorkDelete
1717 AtomicInteger countDelete = new AtomicInteger ( 1 );
1818 AtomicInteger countDeleteBulk = new AtomicInteger ( 1 );
1919
20- private final List <Operation > operations ;
20+ private final List <Operation <?> > operations ;
2121
22- public UnitOfWorkDeleteImpl ( List <Operation > operations )
22+ public UnitOfWorkDeleteImpl ( List <Operation <?> > operations )
2323 {
2424 this .operations = operations ;
2525 }
Original file line number Diff line number Diff line change @@ -16,9 +16,9 @@ public class UnitOfWorkUpdateImpl implements UnitOfWorkUpdate
1616 AtomicInteger countUpdate = new AtomicInteger ( 1 );
1717 AtomicInteger countUpdateBulk = new AtomicInteger ( 1 );
1818
19- private final List <Operation > operations ;
19+ private final List <Operation <?> > operations ;
2020
21- public UnitOfWorkUpdateImpl ( List <Operation > operations )
21+ public UnitOfWorkUpdateImpl ( List <Operation <?> > operations )
2222 {
2323 this .operations = operations ;
2424 }
You can’t perform that action at this time.
0 commit comments