Skip to content

Commit

Permalink
fix: 🐛 GxClientTransactionModel should use LinkedHashSet to
Browse files Browse the repository at this point in the history
maintain add order
  • Loading branch information
hyyan committed Jul 13, 2022
1 parent 489b72d commit 50e557e
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions GxClientModels.bbj
Expand Up @@ -22,6 +22,7 @@ use com.basiscomponents.db.DataRow
use java.util.ArrayList
use java.util.Arrays
use java.util.HashSet
use java.util.LinkedHashSet
use java.util.HashMap
use java.lang.StringBuilder
REM /**
Expand Down Expand Up @@ -597,15 +598,15 @@ class public GxClientTransactionModel
rem /**
rem * An array of rows to add
rem */
field public HashSet Add! = new HashSet()
field public HashSet Add! = new LinkedHashSet()
rem /**
rem * An array of row to remove
rem */
field public HashSet Remove! = new HashSet()
field public HashSet Remove! = new LinkedHashSet()
rem /**
rem * An array of rows to update
rem */
field public HashSet Update! = new HashSet()
field public HashSet Update! = new LinkedHashSet()
rem /**
rem * Index for rows to add
rem *
Expand Down

0 comments on commit 50e557e

Please sign in to comment.