File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
hibernate-core/src/main/java/org/hibernate/boot/internal Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 104
104
import java .util .ArrayList ;
105
105
import java .util .HashMap ;
106
106
import java .util .HashSet ;
107
+ import java .util .LinkedHashMap ;
107
108
import java .util .List ;
108
109
import java .util .Locale ;
109
110
import java .util .Map ;
@@ -145,7 +146,7 @@ public class InFlightMetadataCollectorImpl
145
146
146
147
private final UUID uuid ;
147
148
148
- private final Map <String ,PersistentClass > entityBindingMap = new HashMap <>();
149
+ private final Map <String ,PersistentClass > entityBindingMap = new LinkedHashMap <>();
149
150
private final List <Component > composites = new ArrayList <>();
150
151
private final Map <Class <?>, Component > genericComponentsMap = new HashMap <>();
151
152
private final Map <ClassDetails , List <ClassDetails >> embeddableSubtypes = new HashMap <>();
You can’t perform that action at this time.
0 commit comments