public class org.springframework.core.env.MutablePropertySources implements org.springframework.core.env.PropertySources
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.springframework.core.env.MutablePropertySources
  super_class: java.lang.Object
{
  private final java.util.List<org.springframework.core.env.PropertySource<?>> propertySourceList;
    descriptor: Ljava/util/List;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/List<Lorg/springframework/core/env/PropertySource<*>;>;

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.springframework.core.env.MutablePropertySources this
         0: .line 50
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 44
            aload 0 /* this */
            new java.util.concurrent.CopyOnWriteArrayList
            dup
            invokespecial java.util.concurrent.CopyOnWriteArrayList.<init>:()V
            putfield org.springframework.core.env.MutablePropertySources.propertySourceList:Ljava/util/List;
         2: .line 51
            return
        end local 0 // org.springframework.core.env.MutablePropertySources this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/springframework/core/env/MutablePropertySources;

  public void <init>(org.springframework.core.env.PropertySources);
    descriptor: (Lorg/springframework/core/env/PropertySources;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // org.springframework.core.env.MutablePropertySources this
        start local 1 // org.springframework.core.env.PropertySources propertySources
         0: .line 58
            aload 0 /* this */
            invokespecial org.springframework.core.env.MutablePropertySources.<init>:()V
         1: .line 59
            aload 1 /* propertySources */
            invokeinterface org.springframework.core.env.PropertySources.iterator:()Ljava/util/Iterator;
            astore 3
            goto 4
      StackMap locals: org.springframework.core.env.MutablePropertySources org.springframework.core.env.PropertySources top java.util.Iterator
      StackMap stack:
         2: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.springframework.core.env.PropertySource
            astore 2 /* propertySource */
        start local 2 // org.springframework.core.env.PropertySource propertySource
         3: .line 60
            aload 0 /* this */
            aload 2 /* propertySource */
            invokevirtual org.springframework.core.env.MutablePropertySources.addLast:(Lorg/springframework/core/env/PropertySource;)V
        end local 2 // org.springframework.core.env.PropertySource propertySource
         4: .line 59
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         5: .line 62
            return
        end local 1 // org.springframework.core.env.PropertySources propertySources
        end local 0 // org.springframework.core.env.MutablePropertySources this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    6     0             this  Lorg/springframework/core/env/MutablePropertySources;
            0    6     1  propertySources  Lorg/springframework/core/env/PropertySources;
            3    4     2   propertySource  Lorg/springframework/core/env/PropertySource<*>;
    MethodParameters:
                 Name  Flags
      propertySources  

  public java.util.Iterator<org.springframework.core.env.PropertySource<?>> iterator();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.core.env.MutablePropertySources this
         0: .line 67
            aload 0 /* this */
            getfield org.springframework.core.env.MutablePropertySources.propertySourceList:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            areturn
        end local 0 // org.springframework.core.env.MutablePropertySources this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/core/env/MutablePropertySources;
    Signature: ()Ljava/util/Iterator<Lorg/springframework/core/env/PropertySource<*>;>;

  public java.util.Spliterator<org.springframework.core.env.PropertySource<?>> spliterator();
    descriptor: ()Ljava/util/Spliterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.springframework.core.env.MutablePropertySources this
         0: .line 72
            aload 0 /* this */
            getfield org.springframework.core.env.MutablePropertySources.propertySourceList:Ljava/util/List;
            iconst_0
            invokestatic java.util.Spliterators.spliterator:(Ljava/util/Collection;I)Ljava/util/Spliterator;
            areturn
        end local 0 // org.springframework.core.env.MutablePropertySources this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/core/env/MutablePropertySources;
    Signature: ()Ljava/util/Spliterator<Lorg/springframework/core/env/PropertySource<*>;>;

  public java.util.stream.Stream<org.springframework.core.env.PropertySource<?>> stream();
    descriptor: ()Ljava/util/stream/Stream;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.core.env.MutablePropertySources this
         0: .line 77
            aload 0 /* this */
            getfield org.springframework.core.env.MutablePropertySources.propertySourceList:Ljava/util/List;
            invokeinterface java.util.List.stream:()Ljava/util/stream/Stream;
            areturn
        end local 0 // org.springframework.core.env.MutablePropertySources this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/core/env/MutablePropertySources;
    Signature: ()Ljava/util/stream/Stream<Lorg/springframework/core/env/PropertySource<*>;>;

  public boolean contains(java.lang.String);
    descriptor: (Ljava/lang/String;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.core.env.MutablePropertySources this
        start local 1 // java.lang.String name
         0: .line 82
            aload 0 /* this */
            getfield org.springframework.core.env.MutablePropertySources.propertySourceList:Ljava/util/List;
            aload 1 /* name */
            invokestatic org.springframework.core.env.PropertySource.named:(Ljava/lang/String;)Lorg/springframework/core/env/PropertySource;
            invokeinterface java.util.List.contains:(Ljava/lang/Object;)Z
            ireturn
        end local 1 // java.lang.String name
        end local 0 // org.springframework.core.env.MutablePropertySources this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/core/env/MutablePropertySources;
            0    1     1  name  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      name  

  public org.springframework.core.env.PropertySource<?> get(java.lang.String);
    descriptor: (Ljava/lang/String;)Lorg/springframework/core/env/PropertySource;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.springframework.core.env.MutablePropertySources this
        start local 1 // java.lang.String name
         0: .line 88
            aload 0 /* this */
            getfield org.springframework.core.env.MutablePropertySources.propertySourceList:Ljava/util/List;
            aload 1 /* name */
            invokestatic org.springframework.core.env.PropertySource.named:(Ljava/lang/String;)Lorg/springframework/core/env/PropertySource;
            invokeinterface java.util.List.indexOf:(Ljava/lang/Object;)I
            istore 2 /* index */
        start local 2 // int index
         1: .line 89
            iload 2 /* index */
            iconst_m1
            if_icmpeq 2
            aload 0 /* this */
            getfield org.springframework.core.env.MutablePropertySources.propertySourceList:Ljava/util/List;
            iload 2 /* index */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast org.springframework.core.env.PropertySource
            goto 3
      StackMap locals: int
      StackMap stack:
         2: aconst_null
      StackMap locals:
      StackMap stack: org.springframework.core.env.PropertySource
         3: areturn
        end local 2 // int index
        end local 1 // java.lang.String name
        end local 0 // org.springframework.core.env.MutablePropertySources this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lorg/springframework/core/env/MutablePropertySources;
            0    4     1   name  Ljava/lang/String;
            1    4     2  index  I
    Signature: (Ljava/lang/String;)Lorg/springframework/core/env/PropertySource<*>;
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()
    MethodParameters:
      Name  Flags
      name  

  public void addFirst(org.springframework.core.env.PropertySource<?>);
    descriptor: (Lorg/springframework/core/env/PropertySource;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.springframework.core.env.MutablePropertySources this
        start local 1 // org.springframework.core.env.PropertySource propertySource
         0: .line 97
            aload 0 /* this */
            aload 1 /* propertySource */
            invokevirtual org.springframework.core.env.MutablePropertySources.removeIfPresent:(Lorg/springframework/core/env/PropertySource;)V
         1: .line 98
            aload 0 /* this */
            getfield org.springframework.core.env.MutablePropertySources.propertySourceList:Ljava/util/List;
            iconst_0
            aload 1 /* propertySource */
            invokeinterface java.util.List.add:(ILjava/lang/Object;)V
         2: .line 99
            return
        end local 1 // org.springframework.core.env.PropertySource propertySource
        end local 0 // org.springframework.core.env.MutablePropertySources this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    3     0            this  Lorg/springframework/core/env/MutablePropertySources;
            0    3     1  propertySource  Lorg/springframework/core/env/PropertySource<*>;
    Signature: (Lorg/springframework/core/env/PropertySource<*>;)V
    MethodParameters:
                Name  Flags
      propertySource  

  public void addLast(org.springframework.core.env.PropertySource<?>);
    descriptor: (Lorg/springframework/core/env/PropertySource;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.core.env.MutablePropertySources this
        start local 1 // org.springframework.core.env.PropertySource propertySource
         0: .line 105
            aload 0 /* this */
            aload 1 /* propertySource */
            invokevirtual org.springframework.core.env.MutablePropertySources.removeIfPresent:(Lorg/springframework/core/env/PropertySource;)V
         1: .line 106
            aload 0 /* this */
            getfield org.springframework.core.env.MutablePropertySources.propertySourceList:Ljava/util/List;
            aload 1 /* propertySource */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         2: .line 107
            return
        end local 1 // org.springframework.core.env.PropertySource propertySource
        end local 0 // org.springframework.core.env.MutablePropertySources this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    3     0            this  Lorg/springframework/core/env/MutablePropertySources;
            0    3     1  propertySource  Lorg/springframework/core/env/PropertySource<*>;
    Signature: (Lorg/springframework/core/env/PropertySource<*>;)V
    MethodParameters:
                Name  Flags
      propertySource  

  public void addBefore(java.lang.String, org.springframework.core.env.PropertySource<?>);
    descriptor: (Ljava/lang/String;Lorg/springframework/core/env/PropertySource;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.springframework.core.env.MutablePropertySources this
        start local 1 // java.lang.String relativePropertySourceName
        start local 2 // org.springframework.core.env.PropertySource propertySource
         0: .line 114
            aload 0 /* this */
            aload 1 /* relativePropertySourceName */
            aload 2 /* propertySource */
            invokevirtual org.springframework.core.env.MutablePropertySources.assertLegalRelativeAddition:(Ljava/lang/String;Lorg/springframework/core/env/PropertySource;)V
         1: .line 115
            aload 0 /* this */
            aload 2 /* propertySource */
            invokevirtual org.springframework.core.env.MutablePropertySources.removeIfPresent:(Lorg/springframework/core/env/PropertySource;)V
         2: .line 116
            aload 0 /* this */
            aload 1 /* relativePropertySourceName */
            invokevirtual org.springframework.core.env.MutablePropertySources.assertPresentAndGetIndex:(Ljava/lang/String;)I
            istore 3 /* index */
        start local 3 // int index
         3: .line 117
            aload 0 /* this */
            iload 3 /* index */
            aload 2 /* propertySource */
            invokevirtual org.springframework.core.env.MutablePropertySources.addAtIndex:(ILorg/springframework/core/env/PropertySource;)V
         4: .line 118
            return
        end local 3 // int index
        end local 2 // org.springframework.core.env.PropertySource propertySource
        end local 1 // java.lang.String relativePropertySourceName
        end local 0 // org.springframework.core.env.MutablePropertySources this
      LocalVariableTable:
        Start  End  Slot                        Name  Signature
            0    5     0                        this  Lorg/springframework/core/env/MutablePropertySources;
            0    5     1  relativePropertySourceName  Ljava/lang/String;
            0    5     2              propertySource  Lorg/springframework/core/env/PropertySource<*>;
            3    5     3                       index  I
    Signature: (Ljava/lang/String;Lorg/springframework/core/env/PropertySource<*>;)V
    MethodParameters:
                            Name  Flags
      relativePropertySourceName  
      propertySource              

  public void addAfter(java.lang.String, org.springframework.core.env.PropertySource<?>);
    descriptor: (Ljava/lang/String;Lorg/springframework/core/env/PropertySource;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.springframework.core.env.MutablePropertySources this
        start local 1 // java.lang.String relativePropertySourceName
        start local 2 // org.springframework.core.env.PropertySource propertySource
         0: .line 125
            aload 0 /* this */
            aload 1 /* relativePropertySourceName */
            aload 2 /* propertySource */
            invokevirtual org.springframework.core.env.MutablePropertySources.assertLegalRelativeAddition:(Ljava/lang/String;Lorg/springframework/core/env/PropertySource;)V
         1: .line 126
            aload 0 /* this */
            aload 2 /* propertySource */
            invokevirtual org.springframework.core.env.MutablePropertySources.removeIfPresent:(Lorg/springframework/core/env/PropertySource;)V
         2: .line 127
            aload 0 /* this */
            aload 1 /* relativePropertySourceName */
            invokevirtual org.springframework.core.env.MutablePropertySources.assertPresentAndGetIndex:(Ljava/lang/String;)I
            istore 3 /* index */
        start local 3 // int index
         3: .line 128
            aload 0 /* this */
            iload 3 /* index */
            iconst_1
            iadd
            aload 2 /* propertySource */
            invokevirtual org.springframework.core.env.MutablePropertySources.addAtIndex:(ILorg/springframework/core/env/PropertySource;)V
         4: .line 129
            return
        end local 3 // int index
        end local 2 // org.springframework.core.env.PropertySource propertySource
        end local 1 // java.lang.String relativePropertySourceName
        end local 0 // org.springframework.core.env.MutablePropertySources this
      LocalVariableTable:
        Start  End  Slot                        Name  Signature
            0    5     0                        this  Lorg/springframework/core/env/MutablePropertySources;
            0    5     1  relativePropertySourceName  Ljava/lang/String;
            0    5     2              propertySource  Lorg/springframework/core/env/PropertySource<*>;
            3    5     3                       index  I
    Signature: (Ljava/lang/String;Lorg/springframework/core/env/PropertySource<*>;)V
    MethodParameters:
                            Name  Flags
      relativePropertySourceName  
      propertySource              

  public int precedenceOf(org.springframework.core.env.PropertySource<?>);
    descriptor: (Lorg/springframework/core/env/PropertySource;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.core.env.MutablePropertySources this
        start local 1 // org.springframework.core.env.PropertySource propertySource
         0: .line 135
            aload 0 /* this */
            getfield org.springframework.core.env.MutablePropertySources.propertySourceList:Ljava/util/List;
            aload 1 /* propertySource */
            invokeinterface java.util.List.indexOf:(Ljava/lang/Object;)I
            ireturn
        end local 1 // org.springframework.core.env.PropertySource propertySource
        end local 0 // org.springframework.core.env.MutablePropertySources this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    1     0            this  Lorg/springframework/core/env/MutablePropertySources;
            0    1     1  propertySource  Lorg/springframework/core/env/PropertySource<*>;
    Signature: (Lorg/springframework/core/env/PropertySource<*>;)I
    MethodParameters:
                Name  Flags
      propertySource  

  public org.springframework.core.env.PropertySource<?> remove(java.lang.String);
    descriptor: (Ljava/lang/String;)Lorg/springframework/core/env/PropertySource;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.springframework.core.env.MutablePropertySources this
        start local 1 // java.lang.String name
         0: .line 144
            aload 0 /* this */
            getfield org.springframework.core.env.MutablePropertySources.propertySourceList:Ljava/util/List;
            aload 1 /* name */
            invokestatic org.springframework.core.env.PropertySource.named:(Ljava/lang/String;)Lorg/springframework/core/env/PropertySource;
            invokeinterface java.util.List.indexOf:(Ljava/lang/Object;)I
            istore 2 /* index */
        start local 2 // int index
         1: .line 145
            iload 2 /* index */
            iconst_m1
            if_icmpeq 2
            aload 0 /* this */
            getfield org.springframework.core.env.MutablePropertySources.propertySourceList:Ljava/util/List;
            iload 2 /* index */
            invokeinterface java.util.List.remove:(I)Ljava/lang/Object;
            checkcast org.springframework.core.env.PropertySource
            goto 3
      StackMap locals: int
      StackMap stack:
         2: aconst_null
      StackMap locals:
      StackMap stack: org.springframework.core.env.PropertySource
         3: areturn
        end local 2 // int index
        end local 1 // java.lang.String name
        end local 0 // org.springframework.core.env.MutablePropertySources this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lorg/springframework/core/env/MutablePropertySources;
            0    4     1   name  Ljava/lang/String;
            1    4     2  index  I
    Signature: (Ljava/lang/String;)Lorg/springframework/core/env/PropertySource<*>;
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()
    MethodParameters:
      Name  Flags
      name  

  public void replace(java.lang.String, org.springframework.core.env.PropertySource<?>);
    descriptor: (Ljava/lang/String;Lorg/springframework/core/env/PropertySource;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.springframework.core.env.MutablePropertySources this
        start local 1 // java.lang.String name
        start local 2 // org.springframework.core.env.PropertySource propertySource
         0: .line 156
            aload 0 /* this */
            aload 1 /* name */
            invokevirtual org.springframework.core.env.MutablePropertySources.assertPresentAndGetIndex:(Ljava/lang/String;)I
            istore 3 /* index */
        start local 3 // int index
         1: .line 157
            aload 0 /* this */
            getfield org.springframework.core.env.MutablePropertySources.propertySourceList:Ljava/util/List;
            iload 3 /* index */
            aload 2 /* propertySource */
            invokeinterface java.util.List.set:(ILjava/lang/Object;)Ljava/lang/Object;
            pop
         2: .line 158
            return
        end local 3 // int index
        end local 2 // org.springframework.core.env.PropertySource propertySource
        end local 1 // java.lang.String name
        end local 0 // org.springframework.core.env.MutablePropertySources this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    3     0            this  Lorg/springframework/core/env/MutablePropertySources;
            0    3     1            name  Ljava/lang/String;
            0    3     2  propertySource  Lorg/springframework/core/env/PropertySource<*>;
            1    3     3           index  I
    Signature: (Ljava/lang/String;Lorg/springframework/core/env/PropertySource<*>;)V
    MethodParameters:
                Name  Flags
      name            
      propertySource  

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.core.env.MutablePropertySources this
         0: .line 164
            aload 0 /* this */
            getfield org.springframework.core.env.MutablePropertySources.propertySourceList:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            ireturn
        end local 0 // org.springframework.core.env.MutablePropertySources this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/core/env/MutablePropertySources;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.core.env.MutablePropertySources this
         0: .line 169
            aload 0 /* this */
            getfield org.springframework.core.env.MutablePropertySources.propertySourceList:Ljava/util/List;
            invokevirtual java.lang.Object.toString:()Ljava/lang/String;
            areturn
        end local 0 // org.springframework.core.env.MutablePropertySources this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/core/env/MutablePropertySources;

  protected void assertLegalRelativeAddition(java.lang.String, org.springframework.core.env.PropertySource<?>);
    descriptor: (Ljava/lang/String;Lorg/springframework/core/env/PropertySource;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // org.springframework.core.env.MutablePropertySources this
        start local 1 // java.lang.String relativePropertySourceName
        start local 2 // org.springframework.core.env.PropertySource propertySource
         0: .line 176
            aload 2 /* propertySource */
            invokevirtual org.springframework.core.env.PropertySource.getName:()Ljava/lang/String;
            astore 3 /* newPropertySourceName */
        start local 3 // java.lang.String newPropertySourceName
         1: .line 177
            aload 1 /* relativePropertySourceName */
            aload 3 /* newPropertySourceName */
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 5
         2: .line 178
            new java.lang.IllegalArgumentException
            dup
         3: .line 179
            new java.lang.StringBuilder
            dup
            ldc "PropertySource named '"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 3 /* newPropertySourceName */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc "' cannot be added relative to itself"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         4: .line 178
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 181
      StackMap locals: java.lang.String
      StackMap stack:
            return
        end local 3 // java.lang.String newPropertySourceName
        end local 2 // org.springframework.core.env.PropertySource propertySource
        end local 1 // java.lang.String relativePropertySourceName
        end local 0 // org.springframework.core.env.MutablePropertySources this
      LocalVariableTable:
        Start  End  Slot                        Name  Signature
            0    6     0                        this  Lorg/springframework/core/env/MutablePropertySources;
            0    6     1  relativePropertySourceName  Ljava/lang/String;
            0    6     2              propertySource  Lorg/springframework/core/env/PropertySource<*>;
            1    6     3       newPropertySourceName  Ljava/lang/String;
    Signature: (Ljava/lang/String;Lorg/springframework/core/env/PropertySource<*>;)V
    MethodParameters:
                            Name  Flags
      relativePropertySourceName  
      propertySource              

  protected void removeIfPresent(org.springframework.core.env.PropertySource<?>);
    descriptor: (Lorg/springframework/core/env/PropertySource;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.core.env.MutablePropertySources this
        start local 1 // org.springframework.core.env.PropertySource propertySource
         0: .line 187
            aload 0 /* this */
            getfield org.springframework.core.env.MutablePropertySources.propertySourceList:Ljava/util/List;
            aload 1 /* propertySource */
            invokeinterface java.util.List.remove:(Ljava/lang/Object;)Z
            pop
         1: .line 188
            return
        end local 1 // org.springframework.core.env.PropertySource propertySource
        end local 0 // org.springframework.core.env.MutablePropertySources this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    2     0            this  Lorg/springframework/core/env/MutablePropertySources;
            0    2     1  propertySource  Lorg/springframework/core/env/PropertySource<*>;
    Signature: (Lorg/springframework/core/env/PropertySource<*>;)V
    MethodParameters:
                Name  Flags
      propertySource  

  private void addAtIndex(int, org.springframework.core.env.PropertySource<?>);
    descriptor: (ILorg/springframework/core/env/PropertySource;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.springframework.core.env.MutablePropertySources this
        start local 1 // int index
        start local 2 // org.springframework.core.env.PropertySource propertySource
         0: .line 194
            aload 0 /* this */
            aload 2 /* propertySource */
            invokevirtual org.springframework.core.env.MutablePropertySources.removeIfPresent:(Lorg/springframework/core/env/PropertySource;)V
         1: .line 195
            aload 0 /* this */
            getfield org.springframework.core.env.MutablePropertySources.propertySourceList:Ljava/util/List;
            iload 1 /* index */
            aload 2 /* propertySource */
            invokeinterface java.util.List.add:(ILjava/lang/Object;)V
         2: .line 196
            return
        end local 2 // org.springframework.core.env.PropertySource propertySource
        end local 1 // int index
        end local 0 // org.springframework.core.env.MutablePropertySources this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    3     0            this  Lorg/springframework/core/env/MutablePropertySources;
            0    3     1           index  I
            0    3     2  propertySource  Lorg/springframework/core/env/PropertySource<*>;
    Signature: (ILorg/springframework/core/env/PropertySource<*>;)V
    MethodParameters:
                Name  Flags
      index           
      propertySource  

  private int assertPresentAndGetIndex(java.lang.String);
    descriptor: (Ljava/lang/String;)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // org.springframework.core.env.MutablePropertySources this
        start local 1 // java.lang.String name
         0: .line 204
            aload 0 /* this */
            getfield org.springframework.core.env.MutablePropertySources.propertySourceList:Ljava/util/List;
            aload 1 /* name */
            invokestatic org.springframework.core.env.PropertySource.named:(Ljava/lang/String;)Lorg/springframework/core/env/PropertySource;
            invokeinterface java.util.List.indexOf:(Ljava/lang/Object;)I
            istore 2 /* index */
        start local 2 // int index
         1: .line 205
            iload 2 /* index */
            iconst_m1
            if_icmpne 3
         2: .line 206
            new java.lang.IllegalArgumentException
            dup
            new java.lang.StringBuilder
            dup
            ldc "PropertySource named '"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* name */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc "' does not exist"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 208
      StackMap locals: int
      StackMap stack:
            iload 2 /* index */
            ireturn
        end local 2 // int index
        end local 1 // java.lang.String name
        end local 0 // org.springframework.core.env.MutablePropertySources this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lorg/springframework/core/env/MutablePropertySources;
            0    4     1   name  Ljava/lang/String;
            1    4     2  index  I
    MethodParameters:
      Name  Flags
      name  
}
SourceFile: "MutablePropertySources.java"