class org.springframework.boot.context.properties.source.SpringConfigurationPropertySources implements java.lang.Iterable<org.springframework.boot.context.properties.source.ConfigurationPropertySource>
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: org.springframework.boot.context.properties.source.SpringConfigurationPropertySources
  super_class: java.lang.Object
{
  private final java.lang.Iterable<org.springframework.core.env.PropertySource<?>> sources;
    descriptor: Ljava/lang/Iterable;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/lang/Iterable<Lorg/springframework/core/env/PropertySource<*>;>;

  private final java.util.Map<org.springframework.core.env.PropertySource<?>, org.springframework.boot.context.properties.source.ConfigurationPropertySource> cache;
    descriptor: Ljava/util/Map;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/Map<Lorg/springframework/core/env/PropertySource<*>;Lorg/springframework/boot/context/properties/source/ConfigurationPropertySource;>;

  void <init>(java.lang.Iterable<org.springframework.core.env.PropertySource<?>>);
    descriptor: (Ljava/lang/Iterable;)V
    flags: (0x0000) 
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.springframework.boot.context.properties.source.SpringConfigurationPropertySources this
        start local 1 // java.lang.Iterable sources
         0: .line 47
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 44
            aload 0 /* this */
            new org.springframework.util.ConcurrentReferenceHashMap
            dup
            bipush 16
         2: .line 45
            getstatic org.springframework.util.ConcurrentReferenceHashMap$ReferenceType.SOFT:Lorg/springframework/util/ConcurrentReferenceHashMap$ReferenceType;
         3: .line 44
            invokespecial org.springframework.util.ConcurrentReferenceHashMap.<init>:(ILorg/springframework/util/ConcurrentReferenceHashMap$ReferenceType;)V
            putfield org.springframework.boot.context.properties.source.SpringConfigurationPropertySources.cache:Ljava/util/Map;
         4: .line 48
            aload 1 /* sources */
            ldc "Sources must not be null"
            invokestatic org.springframework.util.Assert.notNull:(Ljava/lang/Object;Ljava/lang/String;)V
         5: .line 49
            aload 0 /* this */
            aload 1 /* sources */
            putfield org.springframework.boot.context.properties.source.SpringConfigurationPropertySources.sources:Ljava/lang/Iterable;
         6: .line 50
            return
        end local 1 // java.lang.Iterable sources
        end local 0 // org.springframework.boot.context.properties.source.SpringConfigurationPropertySources this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    7     0     this  Lorg/springframework/boot/context/properties/source/SpringConfigurationPropertySources;
            0    7     1  sources  Ljava/lang/Iterable<Lorg/springframework/core/env/PropertySource<*>;>;
    Signature: (Ljava/lang/Iterable<Lorg/springframework/core/env/PropertySource<*>;>;)V
    MethodParameters:
         Name  Flags
      sources  

  public java.util.Iterator<org.springframework.boot.context.properties.source.ConfigurationPropertySource> iterator();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.springframework.boot.context.properties.source.SpringConfigurationPropertySources this
         0: .line 54
            new org.springframework.boot.context.properties.source.SpringConfigurationPropertySources$SourcesIterator
            dup
            aload 0 /* this */
            getfield org.springframework.boot.context.properties.source.SpringConfigurationPropertySources.sources:Ljava/lang/Iterable;
            invokeinterface java.lang.Iterable.iterator:()Ljava/util/Iterator;
            aload 0 /* this */
            invokedynamic apply(Lorg/springframework/boot/context/properties/source/SpringConfigurationPropertySources;)Ljava/util/function/Function;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)Ljava/lang/Object;
                  org/springframework/boot/context/properties/source/SpringConfigurationPropertySources.adapt(Lorg/springframework/core/env/PropertySource;)Lorg/springframework/boot/context/properties/source/ConfigurationPropertySource; (7)
                  (Lorg/springframework/core/env/PropertySource;)Lorg/springframework/boot/context/properties/source/ConfigurationPropertySource;
            invokespecial org.springframework.boot.context.properties.source.SpringConfigurationPropertySources$SourcesIterator.<init>:(Ljava/util/Iterator;Ljava/util/function/Function;)V
            areturn
        end local 0 // org.springframework.boot.context.properties.source.SpringConfigurationPropertySources this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/boot/context/properties/source/SpringConfigurationPropertySources;
    Signature: ()Ljava/util/Iterator<Lorg/springframework/boot/context/properties/source/ConfigurationPropertySource;>;

  private org.springframework.boot.context.properties.source.ConfigurationPropertySource adapt(org.springframework.core.env.PropertySource<?>);
    descriptor: (Lorg/springframework/core/env/PropertySource;)Lorg/springframework/boot/context/properties/source/ConfigurationPropertySource;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.springframework.boot.context.properties.source.SpringConfigurationPropertySources this
        start local 1 // org.springframework.core.env.PropertySource source
         0: .line 58
            aload 0 /* this */
            getfield org.springframework.boot.context.properties.source.SpringConfigurationPropertySources.cache:Ljava/util/Map;
            aload 1 /* source */
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast org.springframework.boot.context.properties.source.ConfigurationPropertySource
            astore 2 /* result */
        start local 2 // org.springframework.boot.context.properties.source.ConfigurationPropertySource result
         1: .line 61
            aload 2 /* result */
            ifnull 3
            aload 2 /* result */
            invokeinterface org.springframework.boot.context.properties.source.ConfigurationPropertySource.getUnderlyingSource:()Ljava/lang/Object;
            aload 1 /* source */
            if_acmpne 3
         2: .line 62
            aload 2 /* result */
            areturn
         3: .line 64
      StackMap locals: org.springframework.boot.context.properties.source.ConfigurationPropertySource
      StackMap stack:
            aload 1 /* source */
            invokestatic org.springframework.boot.context.properties.source.SpringConfigurationPropertySource.from:(Lorg/springframework/core/env/PropertySource;)Lorg/springframework/boot/context/properties/source/SpringConfigurationPropertySource;
            astore 2 /* result */
         4: .line 65
            aload 0 /* this */
            getfield org.springframework.boot.context.properties.source.SpringConfigurationPropertySources.cache:Ljava/util/Map;
            aload 1 /* source */
            aload 2 /* result */
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         5: .line 66
            aload 2 /* result */
            areturn
        end local 2 // org.springframework.boot.context.properties.source.ConfigurationPropertySource result
        end local 1 // org.springframework.core.env.PropertySource source
        end local 0 // org.springframework.boot.context.properties.source.SpringConfigurationPropertySources this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lorg/springframework/boot/context/properties/source/SpringConfigurationPropertySources;
            0    6     1  source  Lorg/springframework/core/env/PropertySource<*>;
            1    6     2  result  Lorg/springframework/boot/context/properties/source/ConfigurationPropertySource;
    Signature: (Lorg/springframework/core/env/PropertySource<*>;)Lorg/springframework/boot/context/properties/source/ConfigurationPropertySource;
    MethodParameters:
        Name  Flags
      source  
}
Signature: Ljava/lang/Object;Ljava/lang/Iterable<Lorg/springframework/boot/context/properties/source/ConfigurationPropertySource;>;
SourceFile: "SpringConfigurationPropertySources.java"
NestMembers:
  org.springframework.boot.context.properties.source.SpringConfigurationPropertySources$SourcesIterator
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles
  private SourcesIterator = org.springframework.boot.context.properties.source.SpringConfigurationPropertySources$SourcesIterator of org.springframework.boot.context.properties.source.SpringConfigurationPropertySources
  public final ReferenceType = org.springframework.util.ConcurrentReferenceHashMap$ReferenceType of org.springframework.util.ConcurrentReferenceHashMap