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 47
            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 59
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 51
            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 60
            aload 0 /* this */
            aload 1 /* loadContexts */
            putfield org.hibernate.engine.loading.internal.CollectionLoadContext.loadContexts:Lorg/hibernate/engine/loading/internal/LoadContexts;
         3: .line 61
            aload 0 /* this */
            aload 2 /* resultSet */
            putfield org.hibernate.engine.loading.internal.CollectionLoadContext.resultSet:Ljava/sql/ResultSet;
         4: .line 62
            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 65
            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 69
            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 95
            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 96
            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 97
            getstatic org.hibernate.engine.loading.internal.CollectionLoadContext.LOG:Lorg/hibernate/internal/CoreMessageLogger;
            invokeinterface org.hibernate.internal.CoreMessageLogger.isTraceEnabled:()Z
            ifeq 6
         3: .line 98
            getstatic org.hibernate.engine.loading.internal.CollectionLoadContext.LOG:Lorg/hibernate/internal/CoreMessageLogger;
            ldc "Starting attempt to find loading collection [{0}]"
         4: .line 99
            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 98
            invokeinterface org.hibernate.internal.CoreMessageLogger.tracev:(Ljava/lang/String;Ljava/lang/Object;)V
         6: .line 101
      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 102
            aload 5 /* loadingCollectionEntry */
            ifnonnull 33
         8: .line 104
            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 105
            aload 6 /* collection */
            ifnull 15
        10: .line 106
            aload 6 /* collection */
            invokeinterface org.hibernate.collection.spi.PersistentCollection.wasInitialized:()Z
            ifeq 13
        11: .line 107
            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 109
            aconst_null
            areturn
        13: .line 111
      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 112
            goto 28
        15: .line 114
      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 115
            aload 7 /* owner */
            ifnull 19
        17: .line 116
            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;
            invokeinterface 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 115
            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 117
            iload 8 /* newlySavedEntity */
            ifeq 24
        22: .line 120
            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 121
            aconst_null
            areturn
        24: .line 124
      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 125
            aload 1 /* persister */
            invokeinterface org.hibernate.persister.collection.CollectionPersister.getCollectionType:()Lorg/hibernate/type/CollectionType;
        26: .line 126
            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/SharedSessionContractImplementor;
            aload 1 /* persister */
            aload 2 /* key */
        27: .line 125
            invokevirtual org.hibernate.type.CollectionType.instantiate:(Lorg/hibernate/engine/spi/SharedSessionContractImplementor;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 128
      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 129
            aload 6 /* collection */
            invokeinterface org.hibernate.collection.spi.PersistentCollection.beginRead:()V
        30: .line 130
            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 131
            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 132
            aload 6 /* collection */
            areturn
        end local 6 // org.hibernate.collection.spi.PersistentCollection collection
        33: .line 134
      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 135
            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 136
            aload 5 /* loadingCollectionEntry */
            invokevirtual org.hibernate.engine.loading.internal.LoadingCollectionEntry.getCollection:()Lorg/hibernate/collection/spi/PersistentCollection;
            areturn
        36: .line 140
      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 141
            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 152
            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/SharedSessionContractImplementor;
            astore 2 /* session */
        start local 2 // org.hibernate.engine.spi.SharedSessionContractImplementor session
         1: .line 153
            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 154
            aload 0 /* this */
            getfield org.hibernate.engine.loading.internal.CollectionLoadContext.localLoadingCollectionKeys:Ljava/util/Set;
            invokeinterface java.util.Set.isEmpty:()Z
            ifeq 4
         3: .line 155
            return
         4: .line 164
      StackMap locals: org.hibernate.engine.spi.SharedSessionContractImplementor
      StackMap stack:
            aconst_null
            astore 3 /* matches */
        start local 3 // java.util.List matches
         5: .line 165
            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 166
            goto 28
         7: .line 167
      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 168
            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 169
            aload 6 /* lce */
            ifnonnull 12
        10: .line 170
            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 171
            goto 28
        12: .line 172
      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 173
            aload 3 /* matches */
            ifnonnull 15
        14: .line 174
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            astore 3 /* matches */
        15: .line 176
      StackMap locals:
      StackMap stack:
            aload 3 /* matches */
            aload 6 /* lce */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        16: .line 177
            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 178
            aload 2 /* session */
            invokeinterface org.hibernate.engine.spi.SharedSessionContractImplementor.getPersistenceContext:()Lorg/hibernate/engine/spi/PersistenceContext;
        18: .line 179
            new org.hibernate.engine.spi.CollectionKey
            dup
        19: .line 180
            aload 1 /* persister */
        20: .line 181
            aload 6 /* lce */
            invokevirtual org.hibernate.engine.loading.internal.LoadingCollectionEntry.getKey:()Ljava/io/Serializable;
        21: .line 182
            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 179
            invokespecial org.hibernate.engine.spi.CollectionKey.<init>:(Lorg/hibernate/persister/collection/CollectionPersister;Ljava/io/Serializable;Lorg/hibernate/EntityMode;)V
        23: .line 184
            aload 6 /* lce */
            invokevirtual org.hibernate.engine.loading.internal.LoadingCollectionEntry.getCollection:()Lorg/hibernate/collection/spi/PersistentCollection;
        24: .line 178
            invokeinterface org.hibernate.engine.spi.PersistenceContext.addUnownedCollection:(Lorg/hibernate/engine/spi/CollectionKey;Lorg/hibernate/collection/spi/PersistentCollection;)V
        25: .line 187
      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 190
            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 191
            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 166
      StackMap locals:
      StackMap stack:
            aload 4 /* itr */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 7
        29: .line 195
            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 196
            aload 0 /* this */
            getfield org.hibernate.engine.loading.internal.CollectionLoadContext.localLoadingCollectionKeys:Ljava/util/Set;
            invokeinterface java.util.Set.isEmpty:()Z
            ifeq 32
        31: .line 203
            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 205
      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.SharedSessionContractImplementor 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/SharedSessionContractImplementor;
            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 208
            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 209
            aload 2 /* matchedCollectionEntries */
            ifnonnull 5
         2: .line 210
            iload 3 /* debugEnabled */
            ifeq 4
         3: .line 211
            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 213
      StackMap locals: int
      StackMap stack:
            return
         5: .line 216
      StackMap locals:
      StackMap stack:
            aload 2 /* matchedCollectionEntries */
            invokeinterface java.util.List.size:()I
            istore 4 /* count */
        start local 4 // int count
         6: .line 217
            iload 3 /* debugEnabled */
            ifeq 8
         7: .line 218
            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 */
            aload 1 /* persister */
            invokeinterface org.hibernate.persister.collection.CollectionPersister.getRole:()Ljava/lang/String;
            invokeinterface org.hibernate.internal.CoreMessageLogger.debugf:(Ljava/lang/String;ILjava/lang/Object;)V
         8: .line 221
      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 222
            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 221
      StackMap locals:
      StackMap stack:
            aload 6
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 9
        12: .line 225
            iload 3 /* debugEnabled */
            ifeq 14
        13: .line 226
            getstatic org.hibernate.engine.loading.internal.CollectionLoadContext.LOG:Lorg/hibernate/internal/CoreMessageLogger;
            ldc "%s collections initialized for role: %s"
            iload 4 /* count */
            aload 1 /* persister */
            invokeinterface org.hibernate.persister.collection.CollectionPersister.getRole:()Ljava/lang/String;
            invokeinterface org.hibernate.internal.CoreMessageLogger.debugf:(Ljava/lang/String;ILjava/lang/Object;)V
        14: .line 228
      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=9, 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 231
            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 232
            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/SharedSessionContractImplementor;
            astore 3 /* session */
        start local 3 // org.hibernate.engine.spi.SharedSessionContractImplementor session
         2: .line 235
            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 237
            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 238
            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 241
      StackMap locals: org.hibernate.engine.spi.SharedSessionContractImplementor 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 242
            aload 5 /* ce */
            ifnonnull 9
         7: .line 243
            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 244
            goto 10
         9: .line 246
      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 254
      StackMap locals:
      StackMap stack:
            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;
            ifnull 26
        11: .line 258
            aload 2 /* persister */
            invokeinterface org.hibernate.persister.collection.CollectionPersister.getOwnerEntityPersister:()Lorg/hibernate/persister/entity/EntityPersister;
            invokeinterface org.hibernate.persister.entity.EntityPersister.getInstrumentationMetadata:()Lorg/hibernate/bytecode/spi/BytecodeEnhancementMetadata;
        12: .line 257
            astore 6 /* bytecodeEnhancementMetadata */
        start local 6 // org.hibernate.bytecode.spi.BytecodeEnhancementMetadata bytecodeEnhancementMetadata
        13: .line 259
            aload 6 /* bytecodeEnhancementMetadata */
            invokeinterface org.hibernate.bytecode.spi.BytecodeEnhancementMetadata.isEnhancedForLazyLoading:()Z
            ifeq 26
        14: .line 262
            aload 2 /* persister */
            invokeinterface org.hibernate.persister.collection.CollectionPersister.getRole:()Ljava/lang/String;
        15: .line 263
            aload 2 /* persister */
            invokeinterface org.hibernate.persister.collection.CollectionPersister.getOwnerEntityPersister:()Lorg/hibernate/persister/entity/EntityPersister;
            invokeinterface org.hibernate.persister.entity.EntityPersister.getEntityName:()Ljava/lang/String;
            invokevirtual java.lang.String.length:()I
            iconst_1
            iadd
        16: .line 262
            invokevirtual java.lang.String.substring:(I)Ljava/lang/String;
            astore 7 /* propertyName */
        start local 7 // java.lang.String propertyName
        17: .line 265
            aload 6 /* bytecodeEnhancementMetadata */
            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;
            aload 7 /* propertyName */
            invokeinterface org.hibernate.bytecode.spi.BytecodeEnhancementMetadata.isAttributeLoaded:(Ljava/lang/Object;Ljava/lang/String;)Z
            ifne 26
        18: .line 266
            aload 2 /* 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;
        19: .line 267
            aload 7 /* propertyName */
        20: .line 266
            invokevirtual org.hibernate.tuple.entity.EntityMetamodel.getPropertyIndex:(Ljava/lang/String;)I
            istore 8 /* propertyIndex */
        start local 8 // int propertyIndex
        21: .line 269
            aload 2 /* persister */
            invokeinterface org.hibernate.persister.collection.CollectionPersister.getOwnerEntityPersister:()Lorg/hibernate/persister/entity/EntityPersister;
        22: .line 270
            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;
        23: .line 271
            iload 8 /* propertyIndex */
        24: .line 272
            aload 1 /* lce */
            invokevirtual org.hibernate.engine.loading.internal.LoadingCollectionEntry.getCollection:()Lorg/hibernate/collection/spi/PersistentCollection;
        25: .line 269
            invokeinterface org.hibernate.persister.entity.EntityPersister.setPropertyValue:(Ljava/lang/Object;ILjava/lang/Object;)V
        end local 8 // int propertyIndex
        end local 7 // java.lang.String propertyName
        end local 6 // org.hibernate.bytecode.spi.BytecodeEnhancementMetadata bytecodeEnhancementMetadata
        26: .line 281
      StackMap locals:
      StackMap stack:
            iload 4 /* hasNoQueuedAdds */
            ifeq 30
        27: .line 283
            aload 2 /* persister */
            invokeinterface org.hibernate.persister.collection.CollectionPersister.hasCache:()Z
            ifeq 30
        28: .line 285
            aload 3 /* session */
            invokeinterface org.hibernate.engine.spi.SharedSessionContractImplementor.getCacheMode:()Lorg/hibernate/CacheMode;
            invokevirtual org.hibernate.CacheMode.isPutEnabled:()Z
            ifeq 30
            aload 5 /* ce */
            invokevirtual org.hibernate.engine.spi.CollectionEntry.isDoremove:()Z
            ifne 30
        29: .line 279
            iconst_1
            goto 31
      StackMap locals:
      StackMap stack:
        30: iconst_0
      StackMap locals:
      StackMap stack: int
        31: istore 6 /* addToCache */
        start local 6 // boolean addToCache
        32: .line 286
            iload 6 /* addToCache */
            ifeq 34
        33: .line 287
            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
        34: .line 290
      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 39
        35: .line 291
            getstatic org.hibernate.engine.loading.internal.CollectionLoadContext.LOG:Lorg/hibernate/internal/CoreMessageLogger;
        36: .line 292
            ldc "Collection fully initialized: %s"
        37: .line 293
            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/SharedSessionContractImplementor;)Ljava/lang/String;
        38: .line 291
            invokeinterface org.hibernate.internal.CoreMessageLogger.debugf:(Ljava/lang/String;Ljava/lang/Object;)V
        39: .line 296
      StackMap locals:
      StackMap stack:
            aload 3 /* session */
            invokeinterface org.hibernate.engine.spi.SharedSessionContractImplementor.getFactory:()Lorg/hibernate/engine/spi/SessionFactoryImplementor;
            invokeinterface org.hibernate.engine.spi.SessionFactoryImplementor.getStatistics:()Lorg/hibernate/stat/spi/StatisticsImplementor;
            invokeinterface org.hibernate.stat.spi.StatisticsImplementor.isStatisticsEnabled:()Z
            ifeq 41
        40: .line 297
            aload 3 /* session */
            invokeinterface org.hibernate.engine.spi.SharedSessionContractImplementor.getFactory:()Lorg/hibernate/engine/spi/SessionFactoryImplementor;
            invokeinterface org.hibernate.engine.spi.SessionFactoryImplementor.getStatistics:()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
        41: .line 299
      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.SharedSessionContractImplementor 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   42     0                         this  Lorg/hibernate/engine/loading/internal/CollectionLoadContext;
            0   42     1                          lce  Lorg/hibernate/engine/loading/internal/LoadingCollectionEntry;
            0   42     2                    persister  Lorg/hibernate/persister/collection/CollectionPersister;
            2   42     3                      session  Lorg/hibernate/engine/spi/SharedSessionContractImplementor;
            3   42     4              hasNoQueuedAdds  Z
            6   42     5                           ce  Lorg/hibernate/engine/spi/CollectionEntry;
           13   26     6  bytecodeEnhancementMetadata  Lorg/hibernate/bytecode/spi/BytecodeEnhancementMetadata;
           17   26     7                 propertyName  Ljava/lang/String;
           21   26     8                propertyIndex  I
           32   42     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=7, locals=16, 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 308
            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/SharedSessionContractImplementor;
            astore 3 /* session */
        start local 3 // org.hibernate.engine.spi.SharedSessionContractImplementor session
         1: .line 309
            aload 3 /* session */
            invokeinterface org.hibernate.engine.spi.SharedSessionContractImplementor.getFactory:()Lorg/hibernate/engine/spi/SessionFactoryImplementor;
            astore 4 /* factory */
        start local 4 // org.hibernate.engine.spi.SessionFactoryImplementor factory
         2: .line 311
            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 312
            iload 5 /* debugEnabled */
            ifeq 5
         4: .line 313
            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/SharedSessionContractImplementor;)Ljava/lang/String;
            invokeinterface org.hibernate.internal.CoreMessageLogger.debugf:(Ljava/lang/String;Ljava/lang/Object;)V
         5: .line 316
      StackMap locals: org.hibernate.engine.spi.SharedSessionContractImplementor org.hibernate.engine.spi.SessionFactoryImplementor int
      StackMap stack:
            aload 3 /* session */
            invokeinterface org.hibernate.engine.spi.SharedSessionContractImplementor.getLoadQueryInfluencers:()Lorg/hibernate/engine/spi/LoadQueryInfluencers;
            invokevirtual org.hibernate.engine.spi.LoadQueryInfluencers.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/SharedSessionContractImplementor;)Z
            ifeq 9
         6: .line 318
            iload 5 /* debugEnabled */
            ifeq 8
         7: .line 319
            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 325
      StackMap locals:
      StackMap stack:
            return
         9: .line 329
      StackMap locals:
      StackMap stack:
            aload 2 /* persister */
            invokeinterface org.hibernate.persister.collection.CollectionPersister.isVersioned:()Z
            ifeq 26
        10: .line 330
            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 331
            aload 7 /* collectionOwner */
            ifnonnull 24
        12: .line 337
            aload 1 /* lce */
            invokevirtual org.hibernate.engine.loading.internal.LoadingCollectionEntry.getCollection:()Lorg/hibernate/collection/spi/PersistentCollection;
            ifnull 17
        13: .line 338
            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 339
            aload 8 /* linkedOwner */
            ifnull 17
        15: .line 340
            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/SharedSessionContractImplementor;)Ljava/io/Serializable;
            astore 9 /* ownerKey */
        start local 9 // java.io.Serializable ownerKey
        16: .line 341
            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 344
      StackMap locals: org.hibernate.engine.loading.internal.CollectionLoadContext org.hibernate.engine.loading.internal.LoadingCollectionEntry org.hibernate.persister.collection.CollectionPersister org.hibernate.engine.spi.SharedSessionContractImplementor org.hibernate.engine.spi.SessionFactoryImplementor int top java.lang.Object
      StackMap stack:
            aload 7 /* collectionOwner */
            ifnonnull 24
        18: .line 345
            new org.hibernate.HibernateException
            dup
        19: .line 346
            new java.lang.StringBuilder
            dup
            ldc "Unable to resolve owner of loading collection ["
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
        20: .line 347
            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/SharedSessionContractImplementor;)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
        21: .line 348
            ldc "] for second level caching"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
        22: .line 346
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        23: .line 345
            invokespecial org.hibernate.HibernateException.<init>:(Ljava/lang/String;)V
            athrow
        24: .line 352
      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;
            invokeinterface 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 353
            goto 27
        end local 6 // java.lang.Object version
        26: .line 355
      StackMap locals: org.hibernate.engine.loading.internal.CollectionLoadContext org.hibernate.engine.loading.internal.LoadingCollectionEntry org.hibernate.persister.collection.CollectionPersister org.hibernate.engine.spi.SharedSessionContractImplementor org.hibernate.engine.spi.SessionFactoryImplementor int
      StackMap stack:
            aconst_null
            astore 6 /* version */
        start local 6 // java.lang.Object version
        27: .line 358
      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 359
            aload 2 /* persister */
            invokeinterface org.hibernate.persister.collection.CollectionPersister.getCacheAccessStrategy:()Lorg/hibernate/cache/spi/access/CollectionDataAccess;
            astore 8 /* cacheAccess */
        start local 8 // org.hibernate.cache.spi.access.CollectionDataAccess cacheAccess
        29: .line 360
            aload 8 /* cacheAccess */
        30: .line 361
            aload 1 /* lce */
            invokevirtual org.hibernate.engine.loading.internal.LoadingCollectionEntry.getKey:()Ljava/io/Serializable;
        31: .line 362
            aload 2 /* persister */
        32: .line 363
            aload 3 /* session */
            invokeinterface org.hibernate.engine.spi.SharedSessionContractImplementor.getFactory:()Lorg/hibernate/engine/spi/SessionFactoryImplementor;
        33: .line 364
            aload 3 /* session */
            invokeinterface org.hibernate.engine.spi.SharedSessionContractImplementor.getTenantIdentifier:()Ljava/lang/String;
        34: .line 360
            invokeinterface org.hibernate.cache.spi.access.CollectionDataAccess.generateCacheKey:(Ljava/lang/Object;Lorg/hibernate/persister/collection/CollectionPersister;Lorg/hibernate/engine/spi/SessionFactoryImplementor;Ljava/lang/String;)Ljava/lang/Object;
            astore 9 /* cacheKey */
        start local 9 // java.lang.Object cacheKey
        35: .line 367
            iconst_1
            istore 10 /* isPutFromLoad */
        start local 10 // boolean isPutFromLoad
        36: .line 368
            aload 2 /* persister */
            invokeinterface org.hibernate.persister.collection.CollectionPersister.getElementType:()Lorg/hibernate/type/Type;
            invokeinterface org.hibernate.type.Type.isAssociationType:()Z
            ifeq 45
        37: .line 369
            aload 7 /* entry */
            invokevirtual org.hibernate.cache.spi.entry.CollectionCacheEntry.getState:()[Ljava/io/Serializable;
            dup
            astore 14
            arraylength
            istore 13
            iconst_0
            istore 12
            goto 44
      StackMap locals: org.hibernate.engine.loading.internal.CollectionLoadContext org.hibernate.engine.loading.internal.LoadingCollectionEntry org.hibernate.persister.collection.CollectionPersister org.hibernate.engine.spi.SharedSessionContractImplementor org.hibernate.engine.spi.SessionFactoryImplementor int java.lang.Object org.hibernate.cache.spi.entry.CollectionCacheEntry org.hibernate.cache.spi.access.CollectionDataAccess java.lang.Object int top int int java.io.Serializable[]
      StackMap stack:
        38: aload 14
            iload 12
            aaload
            astore 11 /* id */
        start local 11 // java.io.Serializable id
        39: .line 370
            aload 2 /* persister */
            checkcast org.hibernate.persister.collection.QueryableCollection
            invokeinterface org.hibernate.persister.collection.QueryableCollection.getElementPersister:()Lorg/hibernate/persister/entity/EntityPersister;
            astore 15 /* entityPersister */
        start local 15 // org.hibernate.persister.entity.EntityPersister entityPersister
        40: .line 371
            aload 3 /* session */
            invokeinterface org.hibernate.engine.spi.SharedSessionContractImplementor.getPersistenceContext:()Lorg/hibernate/engine/spi/PersistenceContext;
            aload 15 /* entityPersister */
            aload 11 /* id */
            invokeinterface org.hibernate.engine.spi.PersistenceContext.wasInsertedDuringTransaction:(Lorg/hibernate/persister/entity/EntityPersister;Ljava/io/Serializable;)Z
            ifeq 43
        41: .line 372
            iconst_0
            istore 10 /* isPutFromLoad */
        42: .line 373
            goto 45
        end local 15 // org.hibernate.persister.entity.EntityPersister entityPersister
        end local 11 // java.io.Serializable id
        43: .line 369
      StackMap locals:
      StackMap stack:
            iinc 12 1
      StackMap locals:
      StackMap stack:
        44: iload 12
            iload 13
            if_icmplt 38
        45: .line 379
      StackMap locals: org.hibernate.engine.loading.internal.CollectionLoadContext org.hibernate.engine.loading.internal.LoadingCollectionEntry org.hibernate.persister.collection.CollectionPersister org.hibernate.engine.spi.SharedSessionContractImplementor org.hibernate.engine.spi.SessionFactoryImplementor int java.lang.Object org.hibernate.cache.spi.entry.CollectionCacheEntry org.hibernate.cache.spi.access.CollectionDataAccess java.lang.Object int
      StackMap stack:
            iload 10 /* isPutFromLoad */
            ifeq 65
        46: .line 381
            aload 3 /* session */
            invokeinterface org.hibernate.engine.spi.SharedSessionContractImplementor.getEventListenerManager:()Lorg/hibernate/engine/spi/SessionEventListenerManager;
            invokeinterface org.hibernate.engine.spi.SessionEventListenerManager.cachePutStart:()V
        47: .line 382
            aload 8 /* cacheAccess */
        48: .line 383
            aload 3 /* session */
        49: .line 384
            aload 9 /* cacheKey */
        50: .line 385
            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;
        51: .line 386
            aload 6 /* version */
        52: .line 387
            aload 4 /* factory */
            invokeinterface org.hibernate.engine.spi.SessionFactoryImplementor.getSessionFactoryOptions:()Lorg/hibernate/boot/spi/SessionFactoryOptions;
            invokeinterface org.hibernate.boot.spi.SessionFactoryOptions.isMinimalPutsEnabled:()Z
            ifeq 53
            aload 3 /* session */
            invokeinterface org.hibernate.engine.spi.SharedSessionContractImplementor.getCacheMode:()Lorg/hibernate/CacheMode;
            getstatic org.hibernate.CacheMode.REFRESH:Lorg/hibernate/CacheMode;
            if_acmpeq 53
            iconst_1
            goto 54
      StackMap locals: org.hibernate.engine.loading.internal.CollectionLoadContext org.hibernate.engine.loading.internal.LoadingCollectionEntry org.hibernate.persister.collection.CollectionPersister org.hibernate.engine.spi.SharedSessionContractImplementor org.hibernate.engine.spi.SessionFactoryImplementor int java.lang.Object org.hibernate.cache.spi.entry.CollectionCacheEntry org.hibernate.cache.spi.access.CollectionDataAccess java.lang.Object int
      StackMap stack: org.hibernate.cache.spi.access.CollectionDataAccess org.hibernate.engine.spi.SharedSessionContractImplementor java.lang.Object java.lang.Object java.lang.Object
        53: iconst_0
        54: .line 382
      StackMap locals: org.hibernate.engine.loading.internal.CollectionLoadContext org.hibernate.engine.loading.internal.LoadingCollectionEntry org.hibernate.persister.collection.CollectionPersister org.hibernate.engine.spi.SharedSessionContractImplementor org.hibernate.engine.spi.SessionFactoryImplementor int java.lang.Object org.hibernate.cache.spi.entry.CollectionCacheEntry org.hibernate.cache.spi.access.CollectionDataAccess java.lang.Object int
      StackMap stack: org.hibernate.cache.spi.access.CollectionDataAccess org.hibernate.engine.spi.SharedSessionContractImplementor java.lang.Object java.lang.Object java.lang.Object int
            invokeinterface org.hibernate.cache.spi.access.CollectionDataAccess.putFromLoad:(Lorg/hibernate/engine/spi/SharedSessionContractImplementor;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Z)Z
            istore 11 /* put */
        start local 11 // boolean put
        55: .line 390
            iload 11 /* put */
            ifeq 64
            aload 4 /* factory */
            invokeinterface org.hibernate.engine.spi.SessionFactoryImplementor.getStatistics:()Lorg/hibernate/stat/spi/StatisticsImplementor;
            invokeinterface org.hibernate.stat.spi.StatisticsImplementor.isStatisticsEnabled:()Z
            ifeq 64
        56: .line 391
            aload 4 /* factory */
            invokeinterface org.hibernate.engine.spi.SessionFactoryImplementor.getStatistics:()Lorg/hibernate/stat/spi/StatisticsImplementor;
        57: .line 392
            aload 2 /* persister */
            invokeinterface org.hibernate.persister.collection.CollectionPersister.getNavigableRole:()Lorg/hibernate/metamodel/model/domain/NavigableRole;
        58: .line 393
            aload 2 /* persister */
            invokeinterface org.hibernate.persister.collection.CollectionPersister.getCacheAccessStrategy:()Lorg/hibernate/cache/spi/access/CollectionDataAccess;
            invokeinterface org.hibernate.cache.spi.access.CollectionDataAccess.getRegion:()Lorg/hibernate/cache/spi/DomainDataRegion;
            invokeinterface org.hibernate.cache.spi.DomainDataRegion.getName:()Ljava/lang/String;
        59: .line 391
            invokeinterface org.hibernate.stat.spi.StatisticsImplementor.collectionCachePut:(Lorg/hibernate/metamodel/model/domain/NavigableRole;Ljava/lang/String;)V
        end local 11 // boolean put
        60: .line 396
            goto 64
        61: .line 397
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 12
        62: .line 398
            aload 3 /* session */
            invokeinterface org.hibernate.engine.spi.SharedSessionContractImplementor.getEventListenerManager:()Lorg/hibernate/engine/spi/SessionEventListenerManager;
            invokeinterface org.hibernate.engine.spi.SessionEventListenerManager.cachePutEnd:()V
        63: .line 399
            aload 12
            athrow
        64: .line 398
      StackMap locals:
      StackMap stack:
            aload 3 /* session */
            invokeinterface org.hibernate.engine.spi.SharedSessionContractImplementor.getEventListenerManager:()Lorg/hibernate/engine/spi/SessionEventListenerManager;
            invokeinterface org.hibernate.engine.spi.SessionEventListenerManager.cachePutEnd:()V
        65: .line 401
      StackMap locals:
      StackMap stack:
            return
        end local 10 // boolean isPutFromLoad
        end local 9 // java.lang.Object cacheKey
        end local 8 // org.hibernate.cache.spi.access.CollectionDataAccess cacheAccess
        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.SharedSessionContractImplementor 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   66     0             this  Lorg/hibernate/engine/loading/internal/CollectionLoadContext;
            0   66     1              lce  Lorg/hibernate/engine/loading/internal/LoadingCollectionEntry;
            0   66     2        persister  Lorg/hibernate/persister/collection/CollectionPersister;
            1   66     3          session  Lorg/hibernate/engine/spi/SharedSessionContractImplementor;
            2   66     4          factory  Lorg/hibernate/engine/spi/SessionFactoryImplementor;
            3   66     5     debugEnabled  Z
           25   26     6          version  Ljava/lang/Object;
           27   66     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   66     7            entry  Lorg/hibernate/cache/spi/entry/CollectionCacheEntry;
           29   66     8      cacheAccess  Lorg/hibernate/cache/spi/access/CollectionDataAccess;
           35   66     9         cacheKey  Ljava/lang/Object;
           36   66    10    isPutFromLoad  Z
           39   43    11               id  Ljava/io/Serializable;
           40   43    15  entityPersister  Lorg/hibernate/persister/entity/EntityPersister;
           55   60    11              put  Z
      Exception table:
        from    to  target  type
          46    61      61  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 404
            aload 0 /* this */
            getfield org.hibernate.engine.loading.internal.CollectionLoadContext.localLoadingCollectionKeys:Ljava/util/Set;
            invokeinterface java.util.Set.isEmpty:()Z
            ifne 2
         1: .line 405
            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 407
      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 408
            aload 0 /* this */
            getfield org.hibernate.engine.loading.internal.CollectionLoadContext.localLoadingCollectionKeys:Ljava/util/Set;
            invokeinterface java.util.Set.clear:()V
         4: .line 409
            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 414
            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"