public class org.hibernate.engine.loading.internal.CollectionLoadContext
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.hibernate.engine.loading.internal.CollectionLoadContext
  super_class: java.lang.Object
{
  private static final org.hibernate.internal.CoreMessageLogger LOG;
    descriptor: Lorg/hibernate/internal/CoreMessageLogger;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private final org.hibernate.engine.loading.internal.LoadContexts loadContexts;
    descriptor: Lorg/hibernate/engine/loading/internal/LoadContexts;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.sql.ResultSet resultSet;
    descriptor: Ljava/sql/ResultSet;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private java.util.Set<org.hibernate.engine.spi.CollectionKey> localLoadingCollectionKeys;
    descriptor: Ljava/util/Set;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/Set<Lorg/hibernate/engine/spi/CollectionKey;>;

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 63
            ldc Lorg/hibernate/engine/loading/internal/CollectionLoadContext;
            invokestatic org.hibernate.internal.CoreLogging.messageLogger:(Ljava/lang/Class;)Lorg/hibernate/internal/CoreMessageLogger;
            putstatic org.hibernate.engine.loading.internal.CollectionLoadContext.LOG:Lorg/hibernate/internal/CoreMessageLogger;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(org.hibernate.engine.loading.internal.LoadContexts, java.sql.ResultSet);
    descriptor: (Lorg/hibernate/engine/loading/internal/LoadContexts;Ljava/sql/ResultSet;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.hibernate.engine.loading.internal.CollectionLoadContext this
        start local 1 // org.hibernate.engine.loading.internal.LoadContexts loadContexts
        start local 2 // java.sql.ResultSet resultSet
         0: .line 75
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 67
            aload 0 /* this */
            new java.util.HashSet
            dup
            invokespecial java.util.HashSet.<init>:()V
            putfield org.hibernate.engine.loading.internal.CollectionLoadContext.localLoadingCollectionKeys:Ljava/util/Set;
         2: .line 76
            aload 0 /* this */
            aload 1 /* loadContexts */
            putfield org.hibernate.engine.loading.internal.CollectionLoadContext.loadContexts:Lorg/hibernate/engine/loading/internal/LoadContexts;
         3: .line 77
            aload 0 /* this */
            aload 2 /* resultSet */
            putfield org.hibernate.engine.loading.internal.CollectionLoadContext.resultSet:Ljava/sql/ResultSet;
         4: .line 78
            return
        end local 2 // java.sql.ResultSet resultSet
        end local 1 // org.hibernate.engine.loading.internal.LoadContexts loadContexts
        end local 0 // org.hibernate.engine.loading.internal.CollectionLoadContext this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    5     0          this  Lorg/hibernate/engine/loading/internal/CollectionLoadContext;
            0    5     1  loadContexts  Lorg/hibernate/engine/loading/internal/LoadContexts;
            0    5     2     resultSet  Ljava/sql/ResultSet;
    MethodParameters:
              Name  Flags
      loadContexts  
      resultSet     

  public java.sql.ResultSet getResultSet();
    descriptor: ()Ljava/sql/ResultSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.hibernate.engine.loading.internal.CollectionLoadContext this
         0: .line 81
            aload 0 /* this */
            getfield org.hibernate.engine.loading.internal.CollectionLoadContext.resultSet:Ljava/sql/ResultSet;
            areturn
        end local 0 // org.hibernate.engine.loading.internal.CollectionLoadContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/hibernate/engine/loading/internal/CollectionLoadContext;

  public org.hibernate.engine.loading.internal.LoadContexts getLoadContext();
    descriptor: ()Lorg/hibernate/engine/loading/internal/LoadContexts;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.hibernate.engine.loading.internal.CollectionLoadContext this
         0: .line 85
            aload 0 /* this */
            getfield org.hibernate.engine.loading.internal.CollectionLoadContext.loadContexts:Lorg/hibernate/engine/loading/internal/LoadContexts;
            areturn
        end local 0 // org.hibernate.engine.loading.internal.CollectionLoadContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/hibernate/engine/loading/internal/CollectionLoadContext;

  public org.hibernate.collection.spi.PersistentCollection getLoadingCollection(org.hibernate.persister.collection.CollectionPersister, java.io.Serializable);
    descriptor: (Lorg/hibernate/persister/collection/CollectionPersister;Ljava/io/Serializable;)Lorg/hibernate/collection/spi/PersistentCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=8, locals=9, args_size=3
        start local 0 // org.hibernate.engine.loading.internal.CollectionLoadContext this
        start local 1 // org.hibernate.persister.collection.CollectionPersister persister
        start local 2 // java.io.Serializable key
         0: .line 111
            aload 1 /* persister */
            invokeinterface org.hibernate.persister.collection.CollectionPersister.getOwnerEntityPersister:()Lorg/hibernate/persister/entity/EntityPersister;
            invokeinterface org.hibernate.persister.entity.EntityPersister.getEntityMetamodel:()Lorg/hibernate/tuple/entity/EntityMetamodel;
            invokevirtual org.hibernate.tuple.entity.EntityMetamodel.getEntityMode:()Lorg/hibernate/EntityMode;
            astore 3 /* em */
        start local 3 // org.hibernate.EntityMode em
         1: .line 112
            new org.hibernate.engine.spi.CollectionKey
            dup
            aload 1 /* persister */
            aload 2 /* key */
            aload 3 /* em */
            invokespecial org.hibernate.engine.spi.CollectionKey.<init>:(Lorg/hibernate/persister/collection/CollectionPersister;Ljava/io/Serializable;Lorg/hibernate/EntityMode;)V
            astore 4 /* collectionKey */
        start local 4 // org.hibernate.engine.spi.CollectionKey collectionKey
         2: .line 113
            getstatic org.hibernate.engine.loading.internal.CollectionLoadContext.LOG:Lorg/hibernate/internal/CoreMessageLogger;
            invokeinterface org.hibernate.internal.CoreMessageLogger.isTraceEnabled:()Z
            ifeq 6
         3: .line 114
            getstatic org.hibernate.engine.loading.internal.CollectionLoadContext.LOG:Lorg/hibernate/internal/CoreMessageLogger;
            ldc "Starting attempt to find loading collection [{0}]"
         4: .line 115
            aload 1 /* persister */
            invokeinterface org.hibernate.persister.collection.CollectionPersister.getRole:()Ljava/lang/String;
            aload 2 /* key */
            invokestatic org.hibernate.pretty.MessageHelper.collectionInfoString:(Ljava/lang/String;Ljava/io/Serializable;)Ljava/lang/String;
         5: .line 114
            invokeinterface org.hibernate.internal.CoreMessageLogger.tracev:(Ljava/lang/String;Ljava/lang/Object;)V
         6: .line 117
      StackMap locals: org.hibernate.EntityMode org.hibernate.engine.spi.CollectionKey
      StackMap stack:
            aload 0 /* this */
            getfield org.hibernate.engine.loading.internal.CollectionLoadContext.loadContexts:Lorg/hibernate/engine/loading/internal/LoadContexts;
            aload 4 /* collectionKey */
            invokevirtual org.hibernate.engine.loading.internal.LoadContexts.locateLoadingCollectionEntry:(Lorg/hibernate/engine/spi/CollectionKey;)Lorg/hibernate/engine/loading/internal/LoadingCollectionEntry;
            astore 5 /* loadingCollectionEntry */
        start local 5 // org.hibernate.engine.loading.internal.LoadingCollectionEntry loadingCollectionEntry
         7: .line 118
            aload 5 /* loadingCollectionEntry */
            ifnonnull 33
         8: .line 120
            aload 0 /* this */
            getfield org.hibernate.engine.loading.internal.CollectionLoadContext.loadContexts:Lorg/hibernate/engine/loading/internal/LoadContexts;
            invokevirtual org.hibernate.engine.loading.internal.LoadContexts.getPersistenceContext:()Lorg/hibernate/engine/spi/PersistenceContext;
            aload 4 /* collectionKey */
            invokeinterface org.hibernate.engine.spi.PersistenceContext.getCollection:(Lorg/hibernate/engine/spi/CollectionKey;)Lorg/hibernate/collection/spi/PersistentCollection;
            astore 6 /* collection */
        start local 6 // org.hibernate.collection.spi.PersistentCollection collection
         9: .line 121
            aload 6 /* collection */
            ifnull 15
        10: .line 122
            aload 6 /* collection */
            invokeinterface org.hibernate.collection.spi.PersistentCollection.wasInitialized:()Z
            ifeq 13
        11: .line 123
            getstatic org.hibernate.engine.loading.internal.CollectionLoadContext.LOG:Lorg/hibernate/internal/CoreMessageLogger;
            ldc "Collection already initialized; ignoring"
            invokeinterface org.hibernate.internal.CoreMessageLogger.trace:(Ljava/lang/Object;)V
        12: .line 125
            aconst_null
            areturn
        13: .line 127
      StackMap locals: org.hibernate.engine.loading.internal.LoadingCollectionEntry org.hibernate.collection.spi.PersistentCollection
      StackMap stack:
            getstatic org.hibernate.engine.loading.internal.CollectionLoadContext.LOG:Lorg/hibernate/internal/CoreMessageLogger;
            ldc "Collection not yet initialized; initializing"
            invokeinterface org.hibernate.internal.CoreMessageLogger.trace:(Ljava/lang/Object;)V
        14: .line 128
            goto 28
        15: .line 130
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.hibernate.engine.loading.internal.CollectionLoadContext.loadContexts:Lorg/hibernate/engine/loading/internal/LoadContexts;
            invokevirtual org.hibernate.engine.loading.internal.LoadContexts.getPersistenceContext:()Lorg/hibernate/engine/spi/PersistenceContext;
            aload 2 /* key */
            aload 1 /* persister */
            invokeinterface org.hibernate.engine.spi.PersistenceContext.getCollectionOwner:(Ljava/io/Serializable;Lorg/hibernate/persister/collection/CollectionPersister;)Ljava/lang/Object;
            astore 7 /* owner */
        start local 7 // java.lang.Object owner
        16: .line 131
            aload 7 /* owner */
            ifnull 19
        17: .line 132
            aload 0 /* this */
            getfield org.hibernate.engine.loading.internal.CollectionLoadContext.loadContexts:Lorg/hibernate/engine/loading/internal/LoadContexts;
            invokevirtual org.hibernate.engine.loading.internal.LoadContexts.getPersistenceContext:()Lorg/hibernate/engine/spi/PersistenceContext;
            aload 7 /* owner */
            invokeinterface org.hibernate.engine.spi.PersistenceContext.getEntry:(Ljava/lang/Object;)Lorg/hibernate/engine/spi/EntityEntry;
            invokevirtual org.hibernate.engine.spi.EntityEntry.getStatus:()Lorg/hibernate/engine/spi/Status;
            getstatic org.hibernate.engine.spi.Status.LOADING:Lorg/hibernate/engine/spi/Status;
            if_acmpeq 19
        18: .line 131
            iconst_1
            goto 20
      StackMap locals: java.lang.Object
      StackMap stack:
        19: iconst_0
      StackMap locals:
      StackMap stack: int
        20: istore 8 /* newlySavedEntity */
        start local 8 // boolean newlySavedEntity
        21: .line 133
            iload 8 /* newlySavedEntity */
            ifeq 24
        22: .line 136
            getstatic org.hibernate.engine.loading.internal.CollectionLoadContext.LOG:Lorg/hibernate/internal/CoreMessageLogger;
            ldc "Owning entity already loaded; ignoring"
            invokeinterface org.hibernate.internal.CoreMessageLogger.trace:(Ljava/lang/Object;)V
        23: .line 137
            aconst_null
            areturn
        24: .line 140
      StackMap locals: int
      StackMap stack:
            getstatic org.hibernate.engine.loading.internal.CollectionLoadContext.LOG:Lorg/hibernate/internal/CoreMessageLogger;
            ldc "Instantiating new collection [key={0}, rs={1}]"
            aload 2 /* key */
            aload 0 /* this */
            getfield org.hibernate.engine.loading.internal.CollectionLoadContext.resultSet:Ljava/sql/ResultSet;
            invokeinterface org.hibernate.internal.CoreMessageLogger.tracev:(Ljava/lang/String;Ljava/lang/Object;Ljava/lang/Object;)V
        25: .line 141
            aload 1 /* persister */
            invokeinterface org.hibernate.persister.collection.CollectionPersister.getCollectionType:()Lorg/hibernate/type/CollectionType;
        26: .line 142
            aload 0 /* this */
            getfield org.hibernate.engine.loading.internal.CollectionLoadContext.loadContexts:Lorg/hibernate/engine/loading/internal/LoadContexts;
            invokevirtual org.hibernate.engine.loading.internal.LoadContexts.getPersistenceContext:()Lorg/hibernate/engine/spi/PersistenceContext;
            invokeinterface org.hibernate.engine.spi.PersistenceContext.getSession:()Lorg/hibernate/engine/spi/SessionImplementor;
            aload 1 /* persister */
            aload 2 /* key */
        27: .line 141
            invokevirtual org.hibernate.type.CollectionType.instantiate:(Lorg/hibernate/engine/spi/SessionImplementor;Lorg/hibernate/persister/collection/CollectionPersister;Ljava/io/Serializable;)Lorg/hibernate/collection/spi/PersistentCollection;
            astore 6 /* collection */
        end local 8 // boolean newlySavedEntity
        end local 7 // java.lang.Object owner
        28: .line 144
      StackMap locals:
      StackMap stack:
            aload 6 /* collection */
            aload 1 /* persister */
            iconst_m1
            invokeinterface org.hibernate.collection.spi.PersistentCollection.beforeInitialize:(Lorg/hibernate/persister/collection/CollectionPersister;I)V
        29: .line 145
            aload 6 /* collection */
            invokeinterface org.hibernate.collection.spi.PersistentCollection.beginRead:()V
        30: .line 146
            aload 0 /* this */
            getfield org.hibernate.engine.loading.internal.CollectionLoadContext.localLoadingCollectionKeys:Ljava/util/Set;
            aload 4 /* collectionKey */
            invokeinterface java.util.Set.add:(Ljava/lang/Object;)Z
            pop
        31: .line 147
            aload 0 /* this */
            getfield org.hibernate.engine.loading.internal.CollectionLoadContext.loadContexts:Lorg/hibernate/engine/loading/internal/LoadContexts;
            aload 4 /* collectionKey */
            new org.hibernate.engine.loading.internal.LoadingCollectionEntry
            dup
            aload 0 /* this */
            getfield org.hibernate.engine.loading.internal.CollectionLoadContext.resultSet:Ljava/sql/ResultSet;
            aload 1 /* persister */
            aload 2 /* key */
            aload 6 /* collection */
            invokespecial org.hibernate.engine.loading.internal.LoadingCollectionEntry.<init>:(Ljava/sql/ResultSet;Lorg/hibernate/persister/collection/CollectionPersister;Ljava/io/Serializable;Lorg/hibernate/collection/spi/PersistentCollection;)V
            invokevirtual org.hibernate.engine.loading.internal.LoadContexts.registerLoadingCollectionXRef:(Lorg/hibernate/engine/spi/CollectionKey;Lorg/hibernate/engine/loading/internal/LoadingCollectionEntry;)V
        32: .line 148
            aload 6 /* collection */
            areturn
        end local 6 // org.hibernate.collection.spi.PersistentCollection collection
        33: .line 150
      StackMap locals:
      StackMap stack:
            aload 5 /* loadingCollectionEntry */
            invokevirtual org.hibernate.engine.loading.internal.LoadingCollectionEntry.getResultSet:()Ljava/sql/ResultSet;
            aload 0 /* this */
            getfield org.hibernate.engine.loading.internal.CollectionLoadContext.resultSet:Ljava/sql/ResultSet;
            if_acmpne 36
        34: .line 151
            getstatic org.hibernate.engine.loading.internal.CollectionLoadContext.LOG:Lorg/hibernate/internal/CoreMessageLogger;
            ldc "Found loading collection bound to current result set processing; reading row"
            invokeinterface org.hibernate.internal.CoreMessageLogger.trace:(Ljava/lang/Object;)V
        35: .line 152
            aload 5 /* loadingCollectionEntry */
            invokevirtual org.hibernate.engine.loading.internal.LoadingCollectionEntry.getCollection:()Lorg/hibernate/collection/spi/PersistentCollection;
            areturn
        36: .line 156
      StackMap locals:
      StackMap stack:
            getstatic org.hibernate.engine.loading.internal.CollectionLoadContext.LOG:Lorg/hibernate/internal/CoreMessageLogger;
            ldc "Collection is already being initialized; ignoring row"
            invokeinterface org.hibernate.internal.CoreMessageLogger.trace:(Ljava/lang/Object;)V
        37: .line 157
            aconst_null
            areturn
        end local 5 // org.hibernate.engine.loading.internal.LoadingCollectionEntry loadingCollectionEntry
        end local 4 // org.hibernate.engine.spi.CollectionKey collectionKey
        end local 3 // org.hibernate.EntityMode em
        end local 2 // java.io.Serializable key
        end local 1 // org.hibernate.persister.collection.CollectionPersister persister
        end local 0 // org.hibernate.engine.loading.internal.CollectionLoadContext this
      LocalVariableTable:
        Start  End  Slot                    Name  Signature
            0   38     0                    this  Lorg/hibernate/engine/loading/internal/CollectionLoadContext;
            0   38     1               persister  Lorg/hibernate/persister/collection/CollectionPersister;
            0   38     2                     key  Ljava/io/Serializable;
            1   38     3                      em  Lorg/hibernate/EntityMode;
            2   38     4           collectionKey  Lorg/hibernate/engine/spi/CollectionKey;
            7   38     5  loadingCollectionEntry  Lorg/hibernate/engine/loading/internal/LoadingCollectionEntry;
            9   33     6              collection  Lorg/hibernate/collection/spi/PersistentCollection;
           16   28     7                   owner  Ljava/lang/Object;
           21   28     8        newlySavedEntity  Z
    MethodParameters:
           Name  Flags
      persister  final
      key        final

  public void endLoadingCollections(org.hibernate.persister.collection.CollectionPersister);
    descriptor: (Lorg/hibernate/persister/collection/CollectionPersister;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=7, args_size=2
        start local 0 // org.hibernate.engine.loading.internal.CollectionLoadContext this
        start local 1 // org.hibernate.persister.collection.CollectionPersister persister
         0: .line 168
            aload 0 /* this */
            invokevirtual org.hibernate.engine.loading.internal.CollectionLoadContext.getLoadContext:()Lorg/hibernate/engine/loading/internal/LoadContexts;
            invokevirtual org.hibernate.engine.loading.internal.LoadContexts.getPersistenceContext:()Lorg/hibernate/engine/spi/PersistenceContext;
            invokeinterface org.hibernate.engine.spi.PersistenceContext.getSession:()Lorg/hibernate/engine/spi/SessionImplementor;
            astore 2 /* session */
        start local 2 // org.hibernate.engine.spi.SessionImplementor session
         1: .line 169
            aload 0 /* this */
            getfield org.hibernate.engine.loading.internal.CollectionLoadContext.loadContexts:Lorg/hibernate/engine/loading/internal/LoadContexts;
            invokevirtual org.hibernate.engine.loading.internal.LoadContexts.hasLoadingCollectionEntries:()Z
            ifne 4
         2: .line 170
            aload 0 /* this */
            getfield org.hibernate.engine.loading.internal.CollectionLoadContext.localLoadingCollectionKeys:Ljava/util/Set;
            invokeinterface java.util.Set.isEmpty:()Z
            ifeq 4
         3: .line 171
            return
         4: .line 180
      StackMap locals: org.hibernate.engine.spi.SessionImplementor
      StackMap stack:
            aconst_null
            astore 3 /* matches */
        start local 3 // java.util.List matches
         5: .line 181
            aload 0 /* this */
            getfield org.hibernate.engine.loading.internal.CollectionLoadContext.localLoadingCollectionKeys:Ljava/util/Set;
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            astore 4 /* itr */
        start local 4 // java.util.Iterator itr
         6: .line 182
            goto 28
         7: .line 183
      StackMap locals: java.util.List java.util.Iterator
      StackMap stack:
            aload 4 /* itr */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.hibernate.engine.spi.CollectionKey
            astore 5 /* collectionKey */
        start local 5 // org.hibernate.engine.spi.CollectionKey collectionKey
         8: .line 184
            aload 0 /* this */
            getfield org.hibernate.engine.loading.internal.CollectionLoadContext.loadContexts:Lorg/hibernate/engine/loading/internal/LoadContexts;
            aload 5 /* collectionKey */
            invokevirtual org.hibernate.engine.loading.internal.LoadContexts.locateLoadingCollectionEntry:(Lorg/hibernate/engine/spi/CollectionKey;)Lorg/hibernate/engine/loading/internal/LoadingCollectionEntry;
            astore 6 /* lce */
        start local 6 // org.hibernate.engine.loading.internal.LoadingCollectionEntry lce
         9: .line 185
            aload 6 /* lce */
            ifnonnull 12
        10: .line 186
            getstatic org.hibernate.engine.loading.internal.CollectionLoadContext.LOG:Lorg/hibernate/internal/CoreMessageLogger;
            aload 5 /* collectionKey */
            invokeinterface org.hibernate.internal.CoreMessageLogger.loadingCollectionKeyNotFound:(Lorg/hibernate/engine/spi/CollectionKey;)V
        11: .line 187
            goto 28
        12: .line 188
      StackMap locals: org.hibernate.engine.spi.CollectionKey org.hibernate.engine.loading.internal.LoadingCollectionEntry
      StackMap stack:
            aload 6 /* lce */
            invokevirtual org.hibernate.engine.loading.internal.LoadingCollectionEntry.getResultSet:()Ljava/sql/ResultSet;
            aload 0 /* this */
            getfield org.hibernate.engine.loading.internal.CollectionLoadContext.resultSet:Ljava/sql/ResultSet;
            if_acmpne 28
            aload 6 /* lce */
            invokevirtual org.hibernate.engine.loading.internal.LoadingCollectionEntry.getPersister:()Lorg/hibernate/persister/collection/CollectionPersister;
            aload 1 /* persister */
            if_acmpne 28
        13: .line 189
            aload 3 /* matches */
            ifnonnull 15
        14: .line 190
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            astore 3 /* matches */
        15: .line 192
      StackMap locals:
      StackMap stack:
            aload 3 /* matches */
            aload 6 /* lce */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        16: .line 193
            aload 6 /* lce */
            invokevirtual org.hibernate.engine.loading.internal.LoadingCollectionEntry.getCollection:()Lorg/hibernate/collection/spi/PersistentCollection;
            invokeinterface org.hibernate.collection.spi.PersistentCollection.getOwner:()Ljava/lang/Object;
            ifnonnull 25
        17: .line 194
            aload 2 /* session */
            invokeinterface org.hibernate.engine.spi.SessionImplementor.getPersistenceContext:()Lorg/hibernate/engine/spi/PersistenceContext;
        18: .line 195
            new org.hibernate.engine.spi.CollectionKey
            dup
        19: .line 196
            aload 1 /* persister */
        20: .line 197
            aload 6 /* lce */
            invokevirtual org.hibernate.engine.loading.internal.LoadingCollectionEntry.getKey:()Ljava/io/Serializable;
        21: .line 198
            aload 1 /* persister */
            invokeinterface org.hibernate.persister.collection.CollectionPersister.getOwnerEntityPersister:()Lorg/hibernate/persister/entity/EntityPersister;
            invokeinterface org.hibernate.persister.entity.EntityPersister.getEntityMetamodel:()Lorg/hibernate/tuple/entity/EntityMetamodel;
            invokevirtual org.hibernate.tuple.entity.EntityMetamodel.getEntityMode:()Lorg/hibernate/EntityMode;
        22: .line 195
            invokespecial org.hibernate.engine.spi.CollectionKey.<init>:(Lorg/hibernate/persister/collection/CollectionPersister;Ljava/io/Serializable;Lorg/hibernate/EntityMode;)V
        23: .line 200
            aload 6 /* lce */
            invokevirtual org.hibernate.engine.loading.internal.LoadingCollectionEntry.getCollection:()Lorg/hibernate/collection/spi/PersistentCollection;
        24: .line 194
            invokeinterface org.hibernate.engine.spi.PersistenceContext.addUnownedCollection:(Lorg/hibernate/engine/spi/CollectionKey;Lorg/hibernate/collection/spi/PersistentCollection;)V
        25: .line 203
      StackMap locals:
      StackMap stack:
            getstatic org.hibernate.engine.loading.internal.CollectionLoadContext.LOG:Lorg/hibernate/internal/CoreMessageLogger;
            ldc "Removing collection load entry [{0}]"
            aload 6 /* lce */
            invokeinterface org.hibernate.internal.CoreMessageLogger.tracev:(Ljava/lang/String;Ljava/lang/Object;)V
        26: .line 206
            aload 0 /* this */
            getfield org.hibernate.engine.loading.internal.CollectionLoadContext.loadContexts:Lorg/hibernate/engine/loading/internal/LoadContexts;
            aload 5 /* collectionKey */
            invokevirtual org.hibernate.engine.loading.internal.LoadContexts.unregisterLoadingCollectionXRef:(Lorg/hibernate/engine/spi/CollectionKey;)V
        27: .line 207
            aload 4 /* itr */
            invokeinterface java.util.Iterator.remove:()V
        end local 6 // org.hibernate.engine.loading.internal.LoadingCollectionEntry lce
        end local 5 // org.hibernate.engine.spi.CollectionKey collectionKey
        28: .line 182
      StackMap locals:
      StackMap stack:
            aload 4 /* itr */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 7
        29: .line 211
            aload 0 /* this */
            aload 1 /* persister */
            aload 3 /* matches */
            invokevirtual org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollections:(Lorg/hibernate/persister/collection/CollectionPersister;Ljava/util/List;)V
        30: .line 212
            aload 0 /* this */
            getfield org.hibernate.engine.loading.internal.CollectionLoadContext.localLoadingCollectionKeys:Ljava/util/Set;
            invokeinterface java.util.Set.isEmpty:()Z
            ifeq 32
        31: .line 219
            aload 0 /* this */
            getfield org.hibernate.engine.loading.internal.CollectionLoadContext.loadContexts:Lorg/hibernate/engine/loading/internal/LoadContexts;
            aload 0 /* this */
            getfield org.hibernate.engine.loading.internal.CollectionLoadContext.resultSet:Ljava/sql/ResultSet;
            invokevirtual org.hibernate.engine.loading.internal.LoadContexts.cleanup:(Ljava/sql/ResultSet;)V
        32: .line 221
      StackMap locals:
      StackMap stack:
            return
        end local 4 // java.util.Iterator itr
        end local 3 // java.util.List matches
        end local 2 // org.hibernate.engine.spi.SessionImplementor session
        end local 1 // org.hibernate.persister.collection.CollectionPersister persister
        end local 0 // org.hibernate.engine.loading.internal.CollectionLoadContext this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   33     0           this  Lorg/hibernate/engine/loading/internal/CollectionLoadContext;
            0   33     1      persister  Lorg/hibernate/persister/collection/CollectionPersister;
            1   33     2        session  Lorg/hibernate/engine/spi/SessionImplementor;
            5   33     3        matches  Ljava/util/List<Lorg/hibernate/engine/loading/internal/LoadingCollectionEntry;>;
            6   33     4            itr  Ljava/util/Iterator;
            8   28     5  collectionKey  Lorg/hibernate/engine/spi/CollectionKey;
            9   28     6            lce  Lorg/hibernate/engine/loading/internal/LoadingCollectionEntry;
    MethodParameters:
           Name  Flags
      persister  

  private void endLoadingCollections(org.hibernate.persister.collection.CollectionPersister, java.util.List<org.hibernate.engine.loading.internal.LoadingCollectionEntry>);
    descriptor: (Lorg/hibernate/persister/collection/CollectionPersister;Ljava/util/List;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=7, args_size=3
        start local 0 // org.hibernate.engine.loading.internal.CollectionLoadContext this
        start local 1 // org.hibernate.persister.collection.CollectionPersister persister
        start local 2 // java.util.List matchedCollectionEntries
         0: .line 224
            getstatic org.hibernate.engine.loading.internal.CollectionLoadContext.LOG:Lorg/hibernate/internal/CoreMessageLogger;
            invokeinterface org.hibernate.internal.CoreMessageLogger.isDebugEnabled:()Z
            istore 3 /* debugEnabled */
        start local 3 // boolean debugEnabled
         1: .line 225
            aload 2 /* matchedCollectionEntries */
            ifnonnull 5
         2: .line 226
            iload 3 /* debugEnabled */
            ifeq 4
         3: .line 227
            getstatic org.hibernate.engine.loading.internal.CollectionLoadContext.LOG:Lorg/hibernate/internal/CoreMessageLogger;
            ldc "No collections were found in result set for role: %s"
            aload 1 /* persister */
            invokeinterface org.hibernate.persister.collection.CollectionPersister.getRole:()Ljava/lang/String;
            invokeinterface org.hibernate.internal.CoreMessageLogger.debugf:(Ljava/lang/String;Ljava/lang/Object;)V
         4: .line 229
      StackMap locals: int
      StackMap stack:
            return
         5: .line 232
      StackMap locals:
      StackMap stack:
            aload 2 /* matchedCollectionEntries */
            invokeinterface java.util.List.size:()I
            istore 4 /* count */
        start local 4 // int count
         6: .line 233
            iload 3 /* debugEnabled */
            ifeq 8
         7: .line 234
            getstatic org.hibernate.engine.loading.internal.CollectionLoadContext.LOG:Lorg/hibernate/internal/CoreMessageLogger;
            ldc "%s collections were found in result set for role: %s"
            iload 4 /* count */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aload 1 /* persister */
            invokeinterface org.hibernate.persister.collection.CollectionPersister.getRole:()Ljava/lang/String;
            invokeinterface org.hibernate.internal.CoreMessageLogger.debugf:(Ljava/lang/String;Ljava/lang/Object;Ljava/lang/Object;)V
         8: .line 237
      StackMap locals: int
      StackMap stack:
            aload 2 /* matchedCollectionEntries */
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 6
            goto 11
      StackMap locals: org.hibernate.engine.loading.internal.CollectionLoadContext org.hibernate.persister.collection.CollectionPersister java.util.List int int top java.util.Iterator
      StackMap stack:
         9: aload 6
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.hibernate.engine.loading.internal.LoadingCollectionEntry
            astore 5 /* matchedCollectionEntry */
        start local 5 // org.hibernate.engine.loading.internal.LoadingCollectionEntry matchedCollectionEntry
        10: .line 238
            aload 0 /* this */
            aload 5 /* matchedCollectionEntry */
            aload 1 /* persister */
            invokevirtual org.hibernate.engine.loading.internal.CollectionLoadContext.endLoadingCollection:(Lorg/hibernate/engine/loading/internal/LoadingCollectionEntry;Lorg/hibernate/persister/collection/CollectionPersister;)V
        end local 5 // org.hibernate.engine.loading.internal.LoadingCollectionEntry matchedCollectionEntry
        11: .line 237
      StackMap locals:
      StackMap stack:
            aload 6
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 9
        12: .line 241
            iload 3 /* debugEnabled */
            ifeq 14
        13: .line 242
            getstatic org.hibernate.engine.loading.internal.CollectionLoadContext.LOG:Lorg/hibernate/internal/CoreMessageLogger;
            ldc "%s collections initialized for role: %s"
            iload 4 /* count */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aload 1 /* persister */
            invokeinterface org.hibernate.persister.collection.CollectionPersister.getRole:()Ljava/lang/String;
            invokeinterface org.hibernate.internal.CoreMessageLogger.debugf:(Ljava/lang/String;Ljava/lang/Object;Ljava/lang/Object;)V
        14: .line 244
      StackMap locals: org.hibernate.engine.loading.internal.CollectionLoadContext org.hibernate.persister.collection.CollectionPersister java.util.List int int
      StackMap stack:
            return
        end local 4 // int count
        end local 3 // boolean debugEnabled
        end local 2 // java.util.List matchedCollectionEntries
        end local 1 // org.hibernate.persister.collection.CollectionPersister persister
        end local 0 // org.hibernate.engine.loading.internal.CollectionLoadContext this
      LocalVariableTable:
        Start  End  Slot                      Name  Signature
            0   15     0                      this  Lorg/hibernate/engine/loading/internal/CollectionLoadContext;
            0   15     1                 persister  Lorg/hibernate/persister/collection/CollectionPersister;
            0   15     2  matchedCollectionEntries  Ljava/util/List<Lorg/hibernate/engine/loading/internal/LoadingCollectionEntry;>;
            1   15     3              debugEnabled  Z
            6   15     4                     count  I
           10   11     5    matchedCollectionEntry  Lorg/hibernate/engine/loading/internal/LoadingCollectionEntry;
    Signature: (Lorg/hibernate/persister/collection/CollectionPersister;Ljava/util/List<Lorg/hibernate/engine/loading/internal/LoadingCollectionEntry;>;)V
    MethodParameters:
                          Name  Flags
      persister                 
      matchedCollectionEntries  

  private void endLoadingCollection(org.hibernate.engine.loading.internal.LoadingCollectionEntry, org.hibernate.persister.collection.CollectionPersister);
    descriptor: (Lorg/hibernate/engine/loading/internal/LoadingCollectionEntry;Lorg/hibernate/persister/collection/CollectionPersister;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=7, args_size=3
        start local 0 // org.hibernate.engine.loading.internal.CollectionLoadContext this
        start local 1 // org.hibernate.engine.loading.internal.LoadingCollectionEntry lce
        start local 2 // org.hibernate.persister.collection.CollectionPersister persister
         0: .line 247
            getstatic org.hibernate.engine.loading.internal.CollectionLoadContext.LOG:Lorg/hibernate/internal/CoreMessageLogger;
            ldc "Ending loading collection [{0}]"
            aload 1 /* lce */
            invokeinterface org.hibernate.internal.CoreMessageLogger.tracev:(Ljava/lang/String;Ljava/lang/Object;)V
         1: .line 248
            aload 0 /* this */
            invokevirtual org.hibernate.engine.loading.internal.CollectionLoadContext.getLoadContext:()Lorg/hibernate/engine/loading/internal/LoadContexts;
            invokevirtual org.hibernate.engine.loading.internal.LoadContexts.getPersistenceContext:()Lorg/hibernate/engine/spi/PersistenceContext;
            invokeinterface org.hibernate.engine.spi.PersistenceContext.getSession:()Lorg/hibernate/engine/spi/SessionImplementor;
            astore 3 /* session */
        start local 3 // org.hibernate.engine.spi.SessionImplementor session
         2: .line 251
            aload 1 /* lce */
            invokevirtual org.hibernate.engine.loading.internal.LoadingCollectionEntry.getCollection:()Lorg/hibernate/collection/spi/PersistentCollection;
            invokeinterface org.hibernate.collection.spi.PersistentCollection.endRead:()Z
            istore 4 /* hasNoQueuedAdds */
        start local 4 // boolean hasNoQueuedAdds
         3: .line 253
            aload 2 /* persister */
            invokeinterface org.hibernate.persister.collection.CollectionPersister.getCollectionType:()Lorg/hibernate/type/CollectionType;
            invokevirtual org.hibernate.type.CollectionType.hasHolder:()Z
            ifeq 5
         4: .line 254
            aload 0 /* this */
            invokevirtual org.hibernate.engine.loading.internal.CollectionLoadContext.getLoadContext:()Lorg/hibernate/engine/loading/internal/LoadContexts;
            invokevirtual org.hibernate.engine.loading.internal.LoadContexts.getPersistenceContext:()Lorg/hibernate/engine/spi/PersistenceContext;
            aload 1 /* lce */
            invokevirtual org.hibernate.engine.loading.internal.LoadingCollectionEntry.getCollection:()Lorg/hibernate/collection/spi/PersistentCollection;
            invokeinterface org.hibernate.engine.spi.PersistenceContext.addCollectionHolder:(Lorg/hibernate/collection/spi/PersistentCollection;)V
         5: .line 257
      StackMap locals: org.hibernate.engine.spi.SessionImplementor int
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.hibernate.engine.loading.internal.CollectionLoadContext.getLoadContext:()Lorg/hibernate/engine/loading/internal/LoadContexts;
            invokevirtual org.hibernate.engine.loading.internal.LoadContexts.getPersistenceContext:()Lorg/hibernate/engine/spi/PersistenceContext;
            aload 1 /* lce */
            invokevirtual org.hibernate.engine.loading.internal.LoadingCollectionEntry.getCollection:()Lorg/hibernate/collection/spi/PersistentCollection;
            invokeinterface org.hibernate.engine.spi.PersistenceContext.getCollectionEntry:(Lorg/hibernate/collection/spi/PersistentCollection;)Lorg/hibernate/engine/spi/CollectionEntry;
            astore 5 /* ce */
        start local 5 // org.hibernate.engine.spi.CollectionEntry ce
         6: .line 258
            aload 5 /* ce */
            ifnonnull 9
         7: .line 259
            aload 0 /* this */
            invokevirtual org.hibernate.engine.loading.internal.CollectionLoadContext.getLoadContext:()Lorg/hibernate/engine/loading/internal/LoadContexts;
            invokevirtual org.hibernate.engine.loading.internal.LoadContexts.getPersistenceContext:()Lorg/hibernate/engine/spi/PersistenceContext;
            aload 2 /* persister */
            aload 1 /* lce */
            invokevirtual org.hibernate.engine.loading.internal.LoadingCollectionEntry.getCollection:()Lorg/hibernate/collection/spi/PersistentCollection;
            aload 1 /* lce */
            invokevirtual org.hibernate.engine.loading.internal.LoadingCollectionEntry.getKey:()Ljava/io/Serializable;
            invokeinterface org.hibernate.engine.spi.PersistenceContext.addInitializedCollection:(Lorg/hibernate/persister/collection/CollectionPersister;Lorg/hibernate/collection/spi/PersistentCollection;Ljava/io/Serializable;)Lorg/hibernate/engine/spi/CollectionEntry;
            astore 5 /* ce */
         8: .line 260
            goto 10
         9: .line 262
      StackMap locals: org.hibernate.engine.spi.CollectionEntry
      StackMap stack:
            aload 5 /* ce */
            aload 1 /* lce */
            invokevirtual org.hibernate.engine.loading.internal.LoadingCollectionEntry.getCollection:()Lorg/hibernate/collection/spi/PersistentCollection;
            invokevirtual org.hibernate.engine.spi.CollectionEntry.postInitialize:(Lorg/hibernate/collection/spi/PersistentCollection;)V
        10: .line 272
      StackMap locals:
      StackMap stack:
            iload 4 /* hasNoQueuedAdds */
            ifeq 14
        11: .line 274
            aload 2 /* persister */
            invokeinterface org.hibernate.persister.collection.CollectionPersister.hasCache:()Z
            ifeq 14
        12: .line 276
            aload 3 /* session */
            invokeinterface org.hibernate.engine.spi.SessionImplementor.getCacheMode:()Lorg/hibernate/CacheMode;
            invokevirtual org.hibernate.CacheMode.isPutEnabled:()Z
            ifeq 14
            aload 5 /* ce */
            invokevirtual org.hibernate.engine.spi.CollectionEntry.isDoremove:()Z
            ifne 14
        13: .line 270
            iconst_1
            goto 15
      StackMap locals:
      StackMap stack:
        14: iconst_0
      StackMap locals:
      StackMap stack: int
        15: istore 6 /* addToCache */
        start local 6 // boolean addToCache
        16: .line 277
            iload 6 /* addToCache */
            ifeq 18
        17: .line 278
            aload 0 /* this */
            aload 1 /* lce */
            aload 2 /* persister */
            invokevirtual org.hibernate.engine.loading.internal.CollectionLoadContext.addCollectionToCache:(Lorg/hibernate/engine/loading/internal/LoadingCollectionEntry;Lorg/hibernate/persister/collection/CollectionPersister;)V
        18: .line 281
      StackMap locals: int
      StackMap stack:
            getstatic org.hibernate.engine.loading.internal.CollectionLoadContext.LOG:Lorg/hibernate/internal/CoreMessageLogger;
            invokeinterface org.hibernate.internal.CoreMessageLogger.isDebugEnabled:()Z
            ifeq 23
        19: .line 282
            getstatic org.hibernate.engine.loading.internal.CollectionLoadContext.LOG:Lorg/hibernate/internal/CoreMessageLogger;
        20: .line 283
            ldc "Collection fully initialized: %s"
        21: .line 284
            aload 2 /* persister */
            aload 1 /* lce */
            invokevirtual org.hibernate.engine.loading.internal.LoadingCollectionEntry.getCollection:()Lorg/hibernate/collection/spi/PersistentCollection;
            aload 1 /* lce */
            invokevirtual org.hibernate.engine.loading.internal.LoadingCollectionEntry.getKey:()Ljava/io/Serializable;
            aload 3 /* session */
            invokestatic org.hibernate.pretty.MessageHelper.collectionInfoString:(Lorg/hibernate/persister/collection/CollectionPersister;Lorg/hibernate/collection/spi/PersistentCollection;Ljava/io/Serializable;Lorg/hibernate/engine/spi/SessionImplementor;)Ljava/lang/String;
        22: .line 282
            invokeinterface org.hibernate.internal.CoreMessageLogger.debugf:(Ljava/lang/String;Ljava/lang/Object;)V
        23: .line 287
      StackMap locals:
      StackMap stack:
            aload 3 /* session */
            invokeinterface org.hibernate.engine.spi.SessionImplementor.getFactory:()Lorg/hibernate/engine/spi/SessionFactoryImplementor;
            invokeinterface org.hibernate.engine.spi.SessionFactoryImplementor.getStatistics:()Lorg/hibernate/stat/Statistics;
            invokeinterface org.hibernate.stat.Statistics.isStatisticsEnabled:()Z
            ifeq 25
        24: .line 288
            aload 3 /* session */
            invokeinterface org.hibernate.engine.spi.SessionImplementor.getFactory:()Lorg/hibernate/engine/spi/SessionFactoryImplementor;
            invokeinterface org.hibernate.engine.spi.SessionFactoryImplementor.getStatisticsImplementor:()Lorg/hibernate/stat/spi/StatisticsImplementor;
            aload 2 /* persister */
            invokeinterface org.hibernate.persister.collection.CollectionPersister.getRole:()Ljava/lang/String;
            invokeinterface org.hibernate.stat.spi.StatisticsImplementor.loadCollection:(Ljava/lang/String;)V
        25: .line 290
      StackMap locals:
      StackMap stack:
            return
        end local 6 // boolean addToCache
        end local 5 // org.hibernate.engine.spi.CollectionEntry ce
        end local 4 // boolean hasNoQueuedAdds
        end local 3 // org.hibernate.engine.spi.SessionImplementor session
        end local 2 // org.hibernate.persister.collection.CollectionPersister persister
        end local 1 // org.hibernate.engine.loading.internal.LoadingCollectionEntry lce
        end local 0 // org.hibernate.engine.loading.internal.CollectionLoadContext this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   26     0             this  Lorg/hibernate/engine/loading/internal/CollectionLoadContext;
            0   26     1              lce  Lorg/hibernate/engine/loading/internal/LoadingCollectionEntry;
            0   26     2        persister  Lorg/hibernate/persister/collection/CollectionPersister;
            2   26     3          session  Lorg/hibernate/engine/spi/SessionImplementor;
            3   26     4  hasNoQueuedAdds  Z
            6   26     5               ce  Lorg/hibernate/engine/spi/CollectionEntry;
           16   26     6       addToCache  Z
    MethodParameters:
           Name  Flags
      lce        
      persister  

  private void addCollectionToCache(org.hibernate.engine.loading.internal.LoadingCollectionEntry, org.hibernate.persister.collection.CollectionPersister);
    descriptor: (Lorg/hibernate/engine/loading/internal/LoadingCollectionEntry;Lorg/hibernate/persister/collection/CollectionPersister;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=8, locals=15, args_size=3
        start local 0 // org.hibernate.engine.loading.internal.CollectionLoadContext this
        start local 1 // org.hibernate.engine.loading.internal.LoadingCollectionEntry lce
        start local 2 // org.hibernate.persister.collection.CollectionPersister persister
         0: .line 299
            aload 0 /* this */
            invokevirtual org.hibernate.engine.loading.internal.CollectionLoadContext.getLoadContext:()Lorg/hibernate/engine/loading/internal/LoadContexts;
            invokevirtual org.hibernate.engine.loading.internal.LoadContexts.getPersistenceContext:()Lorg/hibernate/engine/spi/PersistenceContext;
            invokeinterface org.hibernate.engine.spi.PersistenceContext.getSession:()Lorg/hibernate/engine/spi/SessionImplementor;
            astore 3 /* session */
        start local 3 // org.hibernate.engine.spi.SessionImplementor session
         1: .line 300
            aload 3 /* session */
            invokeinterface org.hibernate.engine.spi.SessionImplementor.getFactory:()Lorg/hibernate/engine/spi/SessionFactoryImplementor;
            astore 4 /* factory */
        start local 4 // org.hibernate.engine.spi.SessionFactoryImplementor factory
         2: .line 302
            getstatic org.hibernate.engine.loading.internal.CollectionLoadContext.LOG:Lorg/hibernate/internal/CoreMessageLogger;
            invokeinterface org.hibernate.internal.CoreMessageLogger.isDebugEnabled:()Z
            istore 5 /* debugEnabled */
        start local 5 // boolean debugEnabled
         3: .line 303
            iload 5 /* debugEnabled */
            ifeq 5
         4: .line 304
            getstatic org.hibernate.engine.loading.internal.CollectionLoadContext.LOG:Lorg/hibernate/internal/CoreMessageLogger;
            ldc "Caching collection: %s"
            aload 2 /* persister */
            aload 1 /* lce */
            invokevirtual org.hibernate.engine.loading.internal.LoadingCollectionEntry.getCollection:()Lorg/hibernate/collection/spi/PersistentCollection;
            aload 1 /* lce */
            invokevirtual org.hibernate.engine.loading.internal.LoadingCollectionEntry.getKey:()Ljava/io/Serializable;
            aload 3 /* session */
            invokestatic org.hibernate.pretty.MessageHelper.collectionInfoString:(Lorg/hibernate/persister/collection/CollectionPersister;Lorg/hibernate/collection/spi/PersistentCollection;Ljava/io/Serializable;Lorg/hibernate/engine/spi/SessionImplementor;)Ljava/lang/String;
            invokeinterface org.hibernate.internal.CoreMessageLogger.debugf:(Ljava/lang/String;Ljava/lang/Object;)V
         5: .line 307
      StackMap locals: org.hibernate.engine.spi.SessionImplementor org.hibernate.engine.spi.SessionFactoryImplementor int
      StackMap stack:
            aload 3 /* session */
            invokeinterface org.hibernate.engine.spi.SessionImplementor.getEnabledFilters:()Ljava/util/Map;
            invokeinterface java.util.Map.isEmpty:()Z
            ifne 9
            aload 2 /* persister */
            aload 3 /* session */
            invokeinterface org.hibernate.persister.collection.CollectionPersister.isAffectedByEnabledFilters:(Lorg/hibernate/engine/spi/SessionImplementor;)Z
            ifeq 9
         6: .line 309
            iload 5 /* debugEnabled */
            ifeq 8
         7: .line 310
            getstatic org.hibernate.engine.loading.internal.CollectionLoadContext.LOG:Lorg/hibernate/internal/CoreMessageLogger;
            ldc "Refusing to add to cache due to enabled filters"
            invokeinterface org.hibernate.internal.CoreMessageLogger.debug:(Ljava/lang/Object;)V
         8: .line 318
      StackMap locals:
      StackMap stack:
            return
         9: .line 322
      StackMap locals:
      StackMap stack:
            aload 2 /* persister */
            invokeinterface org.hibernate.persister.collection.CollectionPersister.isVersioned:()Z
            ifeq 26
        10: .line 323
            aload 0 /* this */
            invokevirtual org.hibernate.engine.loading.internal.CollectionLoadContext.getLoadContext:()Lorg/hibernate/engine/loading/internal/LoadContexts;
            invokevirtual org.hibernate.engine.loading.internal.LoadContexts.getPersistenceContext:()Lorg/hibernate/engine/spi/PersistenceContext;
            aload 1 /* lce */
            invokevirtual org.hibernate.engine.loading.internal.LoadingCollectionEntry.getKey:()Ljava/io/Serializable;
            aload 2 /* persister */
            invokeinterface org.hibernate.engine.spi.PersistenceContext.getCollectionOwner:(Ljava/io/Serializable;Lorg/hibernate/persister/collection/CollectionPersister;)Ljava/lang/Object;
            astore 7 /* collectionOwner */
        start local 7 // java.lang.Object collectionOwner
        11: .line 324
            aload 7 /* collectionOwner */
            ifnonnull 24
        12: .line 330
            aload 1 /* lce */
            invokevirtual org.hibernate.engine.loading.internal.LoadingCollectionEntry.getCollection:()Lorg/hibernate/collection/spi/PersistentCollection;
            ifnull 17
        13: .line 331
            aload 1 /* lce */
            invokevirtual org.hibernate.engine.loading.internal.LoadingCollectionEntry.getCollection:()Lorg/hibernate/collection/spi/PersistentCollection;
            invokeinterface org.hibernate.collection.spi.PersistentCollection.getOwner:()Ljava/lang/Object;
            astore 8 /* linkedOwner */
        start local 8 // java.lang.Object linkedOwner
        14: .line 332
            aload 8 /* linkedOwner */
            ifnull 17
        15: .line 333
            aload 2 /* persister */
            invokeinterface org.hibernate.persister.collection.CollectionPersister.getOwnerEntityPersister:()Lorg/hibernate/persister/entity/EntityPersister;
            aload 8 /* linkedOwner */
            aload 3 /* session */
            invokeinterface org.hibernate.persister.entity.EntityPersister.getIdentifier:(Ljava/lang/Object;Lorg/hibernate/engine/spi/SessionImplementor;)Ljava/io/Serializable;
            astore 9 /* ownerKey */
        start local 9 // java.io.Serializable ownerKey
        16: .line 334
            aload 0 /* this */
            invokevirtual org.hibernate.engine.loading.internal.CollectionLoadContext.getLoadContext:()Lorg/hibernate/engine/loading/internal/LoadContexts;
            invokevirtual org.hibernate.engine.loading.internal.LoadContexts.getPersistenceContext:()Lorg/hibernate/engine/spi/PersistenceContext;
            aload 9 /* ownerKey */
            aload 2 /* persister */
            invokeinterface org.hibernate.engine.spi.PersistenceContext.getCollectionOwner:(Ljava/io/Serializable;Lorg/hibernate/persister/collection/CollectionPersister;)Ljava/lang/Object;
            astore 7 /* collectionOwner */
        end local 9 // java.io.Serializable ownerKey
        end local 8 // java.lang.Object linkedOwner
        17: .line 337
      StackMap locals: org.hibernate.engine.loading.internal.CollectionLoadContext org.hibernate.engine.loading.internal.LoadingCollectionEntry org.hibernate.persister.collection.CollectionPersister org.hibernate.engine.spi.SessionImplementor org.hibernate.engine.spi.SessionFactoryImplementor int top java.lang.Object
      StackMap stack:
            aload 7 /* collectionOwner */
            ifnonnull 24
        18: .line 338
            new org.hibernate.HibernateException
            dup
        19: .line 339
            new java.lang.StringBuilder
            dup
            ldc "Unable to resolve owner of loading collection ["
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
        20: .line 340
            aload 2 /* persister */
            aload 1 /* lce */
            invokevirtual org.hibernate.engine.loading.internal.LoadingCollectionEntry.getCollection:()Lorg/hibernate/collection/spi/PersistentCollection;
            aload 1 /* lce */
            invokevirtual org.hibernate.engine.loading.internal.LoadingCollectionEntry.getKey:()Ljava/io/Serializable;
            aload 3 /* session */
            invokestatic org.hibernate.pretty.MessageHelper.collectionInfoString:(Lorg/hibernate/persister/collection/CollectionPersister;Lorg/hibernate/collection/spi/PersistentCollection;Ljava/io/Serializable;Lorg/hibernate/engine/spi/SessionImplementor;)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
        21: .line 341
            ldc "] for second level caching"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
        22: .line 339
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        23: .line 338
            invokespecial org.hibernate.HibernateException.<init>:(Ljava/lang/String;)V
            athrow
        24: .line 345
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.hibernate.engine.loading.internal.CollectionLoadContext.getLoadContext:()Lorg/hibernate/engine/loading/internal/LoadContexts;
            invokevirtual org.hibernate.engine.loading.internal.LoadContexts.getPersistenceContext:()Lorg/hibernate/engine/spi/PersistenceContext;
            aload 7 /* collectionOwner */
            invokeinterface org.hibernate.engine.spi.PersistenceContext.getEntry:(Ljava/lang/Object;)Lorg/hibernate/engine/spi/EntityEntry;
            invokevirtual org.hibernate.engine.spi.EntityEntry.getVersion:()Ljava/lang/Object;
            astore 6 /* version */
        end local 7 // java.lang.Object collectionOwner
        start local 6 // java.lang.Object version
        25: .line 346
            goto 27
        end local 6 // java.lang.Object version
        26: .line 348
      StackMap locals: org.hibernate.engine.loading.internal.CollectionLoadContext org.hibernate.engine.loading.internal.LoadingCollectionEntry org.hibernate.persister.collection.CollectionPersister org.hibernate.engine.spi.SessionImplementor org.hibernate.engine.spi.SessionFactoryImplementor int
      StackMap stack:
            aconst_null
            astore 6 /* version */
        start local 6 // java.lang.Object version
        27: .line 351
      StackMap locals: java.lang.Object
      StackMap stack:
            new org.hibernate.cache.spi.entry.CollectionCacheEntry
            dup
            aload 1 /* lce */
            invokevirtual org.hibernate.engine.loading.internal.LoadingCollectionEntry.getCollection:()Lorg/hibernate/collection/spi/PersistentCollection;
            aload 2 /* persister */
            invokespecial org.hibernate.cache.spi.entry.CollectionCacheEntry.<init>:(Lorg/hibernate/collection/spi/PersistentCollection;Lorg/hibernate/persister/collection/CollectionPersister;)V
            astore 7 /* entry */
        start local 7 // org.hibernate.cache.spi.entry.CollectionCacheEntry entry
        28: .line 352
            aload 3 /* session */
            aload 1 /* lce */
            invokevirtual org.hibernate.engine.loading.internal.LoadingCollectionEntry.getKey:()Ljava/io/Serializable;
            aload 2 /* persister */
            invokeinterface org.hibernate.persister.collection.CollectionPersister.getKeyType:()Lorg/hibernate/type/Type;
            aload 2 /* persister */
            invokeinterface org.hibernate.persister.collection.CollectionPersister.getRole:()Ljava/lang/String;
            invokeinterface org.hibernate.engine.spi.SessionImplementor.generateCacheKey:(Ljava/io/Serializable;Lorg/hibernate/type/Type;Ljava/lang/String;)Lorg/hibernate/cache/spi/CacheKey;
            astore 8 /* cacheKey */
        start local 8 // org.hibernate.cache.spi.CacheKey cacheKey
        29: .line 354
            iconst_1
            istore 9 /* isPutFromLoad */
        start local 9 // boolean isPutFromLoad
        30: .line 355
            aload 2 /* persister */
            invokeinterface org.hibernate.persister.collection.CollectionPersister.getElementType:()Lorg/hibernate/type/Type;
            invokeinterface org.hibernate.type.Type.isAssociationType:()Z
            ifeq 39
        31: .line 356
            aload 7 /* entry */
            invokevirtual org.hibernate.cache.spi.entry.CollectionCacheEntry.getState:()[Ljava/io/Serializable;
            dup
            astore 13
            arraylength
            istore 12
            iconst_0
            istore 11
            goto 38
      StackMap locals: org.hibernate.engine.loading.internal.CollectionLoadContext org.hibernate.engine.loading.internal.LoadingCollectionEntry org.hibernate.persister.collection.CollectionPersister org.hibernate.engine.spi.SessionImplementor org.hibernate.engine.spi.SessionFactoryImplementor int java.lang.Object org.hibernate.cache.spi.entry.CollectionCacheEntry org.hibernate.cache.spi.CacheKey int top int int java.io.Serializable[]
      StackMap stack:
        32: aload 13
            iload 11
            aaload
            astore 10 /* id */
        start local 10 // java.io.Serializable id
        33: .line 357
            aload 2 /* persister */
            checkcast org.hibernate.persister.collection.QueryableCollection
            invokeinterface org.hibernate.persister.collection.QueryableCollection.getElementPersister:()Lorg/hibernate/persister/entity/EntityPersister;
            astore 14 /* entityPersister */
        start local 14 // org.hibernate.persister.entity.EntityPersister entityPersister
        34: .line 358
            aload 3 /* session */
            invokeinterface org.hibernate.engine.spi.SessionImplementor.getPersistenceContext:()Lorg/hibernate/engine/spi/PersistenceContext;
            aload 14 /* entityPersister */
            aload 10 /* id */
            invokeinterface org.hibernate.engine.spi.PersistenceContext.wasInsertedDuringTransaction:(Lorg/hibernate/persister/entity/EntityPersister;Ljava/io/Serializable;)Z
            ifeq 37
        35: .line 359
            iconst_0
            istore 9 /* isPutFromLoad */
        36: .line 360
            goto 39
        end local 14 // org.hibernate.persister.entity.EntityPersister entityPersister
        end local 10 // java.io.Serializable id
        37: .line 356
      StackMap locals:
      StackMap stack:
            iinc 11 1
      StackMap locals:
      StackMap stack:
        38: iload 11
            iload 12
            if_icmplt 32
        39: .line 366
      StackMap locals: org.hibernate.engine.loading.internal.CollectionLoadContext org.hibernate.engine.loading.internal.LoadingCollectionEntry org.hibernate.persister.collection.CollectionPersister org.hibernate.engine.spi.SessionImplementor org.hibernate.engine.spi.SessionFactoryImplementor int java.lang.Object org.hibernate.cache.spi.entry.CollectionCacheEntry org.hibernate.cache.spi.CacheKey int
      StackMap stack:
            iload 9 /* isPutFromLoad */
            ifeq 56
        40: .line 368
            aload 3 /* session */
            invokeinterface org.hibernate.engine.spi.SessionImplementor.getEventListenerManager:()Lorg/hibernate/engine/spi/SessionEventListenerManager;
            invokeinterface org.hibernate.engine.spi.SessionEventListenerManager.cachePutStart:()V
        41: .line 369
            aload 2 /* persister */
            invokeinterface org.hibernate.persister.collection.CollectionPersister.getCacheAccessStrategy:()Lorg/hibernate/cache/spi/access/CollectionRegionAccessStrategy;
        42: .line 370
            aload 8 /* cacheKey */
        43: .line 371
            aload 2 /* persister */
            invokeinterface org.hibernate.persister.collection.CollectionPersister.getCacheEntryStructure:()Lorg/hibernate/cache/spi/entry/CacheEntryStructure;
            aload 7 /* entry */
            invokeinterface org.hibernate.cache.spi.entry.CacheEntryStructure.structure:(Ljava/lang/Object;)Ljava/lang/Object;
        44: .line 372
            aload 3 /* session */
            invokeinterface org.hibernate.engine.spi.SessionImplementor.getTimestamp:()J
        45: .line 373
            aload 6 /* version */
        46: .line 374
            aload 4 /* factory */
            invokeinterface org.hibernate.engine.spi.SessionFactoryImplementor.getSettings:()Lorg/hibernate/cfg/Settings;
            invokevirtual org.hibernate.cfg.Settings.isMinimalPutsEnabled:()Z
            ifeq 47
            aload 3 /* session */
            invokeinterface org.hibernate.engine.spi.SessionImplementor.getCacheMode:()Lorg/hibernate/CacheMode;
            getstatic org.hibernate.CacheMode.REFRESH:Lorg/hibernate/CacheMode;
            if_acmpeq 47
            iconst_1
            goto 48
      StackMap locals: org.hibernate.engine.loading.internal.CollectionLoadContext org.hibernate.engine.loading.internal.LoadingCollectionEntry org.hibernate.persister.collection.CollectionPersister org.hibernate.engine.spi.SessionImplementor org.hibernate.engine.spi.SessionFactoryImplementor int java.lang.Object org.hibernate.cache.spi.entry.CollectionCacheEntry org.hibernate.cache.spi.CacheKey int
      StackMap stack: org.hibernate.cache.spi.access.CollectionRegionAccessStrategy org.hibernate.cache.spi.CacheKey java.lang.Object long java.lang.Object
        47: iconst_0
        48: .line 369
      StackMap locals: org.hibernate.engine.loading.internal.CollectionLoadContext org.hibernate.engine.loading.internal.LoadingCollectionEntry org.hibernate.persister.collection.CollectionPersister org.hibernate.engine.spi.SessionImplementor org.hibernate.engine.spi.SessionFactoryImplementor int java.lang.Object org.hibernate.cache.spi.entry.CollectionCacheEntry org.hibernate.cache.spi.CacheKey int
      StackMap stack: org.hibernate.cache.spi.access.CollectionRegionAccessStrategy org.hibernate.cache.spi.CacheKey java.lang.Object long java.lang.Object int
            invokeinterface org.hibernate.cache.spi.access.CollectionRegionAccessStrategy.putFromLoad:(Ljava/lang/Object;Ljava/lang/Object;JLjava/lang/Object;Z)Z
            istore 10 /* put */
        start local 10 // boolean put
        49: .line 377
            iload 10 /* put */
            ifeq 55
            aload 4 /* factory */
            invokeinterface org.hibernate.engine.spi.SessionFactoryImplementor.getStatistics:()Lorg/hibernate/stat/Statistics;
            invokeinterface org.hibernate.stat.Statistics.isStatisticsEnabled:()Z
            ifeq 55
        50: .line 378
            aload 4 /* factory */
            invokeinterface org.hibernate.engine.spi.SessionFactoryImplementor.getStatisticsImplementor:()Lorg/hibernate/stat/spi/StatisticsImplementor;
            aload 2 /* persister */
            invokeinterface org.hibernate.persister.collection.CollectionPersister.getCacheAccessStrategy:()Lorg/hibernate/cache/spi/access/CollectionRegionAccessStrategy;
            invokeinterface org.hibernate.cache.spi.access.CollectionRegionAccessStrategy.getRegion:()Lorg/hibernate/cache/spi/CollectionRegion;
            invokeinterface org.hibernate.cache.spi.CollectionRegion.getName:()Ljava/lang/String;
            invokeinterface org.hibernate.stat.spi.StatisticsImplementor.secondLevelCachePut:(Ljava/lang/String;)V
        end local 10 // boolean put
        51: .line 380
            goto 55
        52: .line 381
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 11
        53: .line 382
            aload 3 /* session */
            invokeinterface org.hibernate.engine.spi.SessionImplementor.getEventListenerManager:()Lorg/hibernate/engine/spi/SessionEventListenerManager;
            invokeinterface org.hibernate.engine.spi.SessionEventListenerManager.cachePutEnd:()V
        54: .line 383
            aload 11
            athrow
        55: .line 382
      StackMap locals:
      StackMap stack:
            aload 3 /* session */
            invokeinterface org.hibernate.engine.spi.SessionImplementor.getEventListenerManager:()Lorg/hibernate/engine/spi/SessionEventListenerManager;
            invokeinterface org.hibernate.engine.spi.SessionEventListenerManager.cachePutEnd:()V
        56: .line 385
      StackMap locals:
      StackMap stack:
            return
        end local 9 // boolean isPutFromLoad
        end local 8 // org.hibernate.cache.spi.CacheKey cacheKey
        end local 7 // org.hibernate.cache.spi.entry.CollectionCacheEntry entry
        end local 6 // java.lang.Object version
        end local 5 // boolean debugEnabled
        end local 4 // org.hibernate.engine.spi.SessionFactoryImplementor factory
        end local 3 // org.hibernate.engine.spi.SessionImplementor session
        end local 2 // org.hibernate.persister.collection.CollectionPersister persister
        end local 1 // org.hibernate.engine.loading.internal.LoadingCollectionEntry lce
        end local 0 // org.hibernate.engine.loading.internal.CollectionLoadContext this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   57     0             this  Lorg/hibernate/engine/loading/internal/CollectionLoadContext;
            0   57     1              lce  Lorg/hibernate/engine/loading/internal/LoadingCollectionEntry;
            0   57     2        persister  Lorg/hibernate/persister/collection/CollectionPersister;
            1   57     3          session  Lorg/hibernate/engine/spi/SessionImplementor;
            2   57     4          factory  Lorg/hibernate/engine/spi/SessionFactoryImplementor;
            3   57     5     debugEnabled  Z
           25   26     6          version  Ljava/lang/Object;
           27   57     6          version  Ljava/lang/Object;
           11   25     7  collectionOwner  Ljava/lang/Object;
           14   17     8      linkedOwner  Ljava/lang/Object;
           16   17     9         ownerKey  Ljava/io/Serializable;
           28   57     7            entry  Lorg/hibernate/cache/spi/entry/CollectionCacheEntry;
           29   57     8         cacheKey  Lorg/hibernate/cache/spi/CacheKey;
           30   57     9    isPutFromLoad  Z
           33   37    10               id  Ljava/io/Serializable;
           34   37    14  entityPersister  Lorg/hibernate/persister/entity/EntityPersister;
           49   51    10              put  Z
      Exception table:
        from    to  target  type
          40    52      52  any
    MethodParameters:
           Name  Flags
      lce        
      persister  

  void cleanup();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.hibernate.engine.loading.internal.CollectionLoadContext this
         0: .line 388
            aload 0 /* this */
            getfield org.hibernate.engine.loading.internal.CollectionLoadContext.localLoadingCollectionKeys:Ljava/util/Set;
            invokeinterface java.util.Set.isEmpty:()Z
            ifne 2
         1: .line 389
            getstatic org.hibernate.engine.loading.internal.CollectionLoadContext.LOG:Lorg/hibernate/internal/CoreMessageLogger;
            aload 0 /* this */
            getfield org.hibernate.engine.loading.internal.CollectionLoadContext.localLoadingCollectionKeys:Ljava/util/Set;
            invokeinterface java.util.Set.size:()I
            invokeinterface org.hibernate.internal.CoreMessageLogger.localLoadingCollectionKeysCount:(I)V
         2: .line 391
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.hibernate.engine.loading.internal.CollectionLoadContext.loadContexts:Lorg/hibernate/engine/loading/internal/LoadContexts;
            aload 0 /* this */
            getfield org.hibernate.engine.loading.internal.CollectionLoadContext.localLoadingCollectionKeys:Ljava/util/Set;
            invokevirtual org.hibernate.engine.loading.internal.LoadContexts.cleanupCollectionXRefs:(Ljava/util/Set;)V
         3: .line 392
            aload 0 /* this */
            getfield org.hibernate.engine.loading.internal.CollectionLoadContext.localLoadingCollectionKeys:Ljava/util/Set;
            invokeinterface java.util.Set.clear:()V
         4: .line 393
            return
        end local 0 // org.hibernate.engine.loading.internal.CollectionLoadContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/hibernate/engine/loading/internal/CollectionLoadContext;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.hibernate.engine.loading.internal.CollectionLoadContext this
         0: .line 398
            new java.lang.StringBuilder
            dup
            aload 0 /* this */
            invokespecial java.lang.Object.toString:()Ljava/lang/String;
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            ldc "<rs="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield org.hibernate.engine.loading.internal.CollectionLoadContext.resultSet:Ljava/sql/ResultSet;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            ldc ">"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // org.hibernate.engine.loading.internal.CollectionLoadContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/hibernate/engine/loading/internal/CollectionLoadContext;
}
SourceFile: "CollectionLoadContext.java"