class org.springframework.boot.context.properties.PropertySourcesDeducer
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: org.springframework.boot.context.properties.PropertySourcesDeducer
  super_class: java.lang.Object
{
  private static final org.apache.commons.logging.Log logger;
    descriptor: Lorg/apache/commons/logging/Log;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private final org.springframework.context.ApplicationContext applicationContext;
    descriptor: Lorg/springframework/context/ApplicationContext;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 39
            ldc Lorg/springframework/boot/context/properties/PropertySourcesDeducer;
            invokestatic org.apache.commons.logging.LogFactory.getLog:(Ljava/lang/Class;)Lorg/apache/commons/logging/Log;
            putstatic org.springframework.boot.context.properties.PropertySourcesDeducer.logger:Lorg/apache/commons/logging/Log;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  void <init>(org.springframework.context.ApplicationContext);
    descriptor: (Lorg/springframework/context/ApplicationContext;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.boot.context.properties.PropertySourcesDeducer this
        start local 1 // org.springframework.context.ApplicationContext applicationContext
         0: .line 43
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 44
            aload 0 /* this */
            aload 1 /* applicationContext */
            putfield org.springframework.boot.context.properties.PropertySourcesDeducer.applicationContext:Lorg/springframework/context/ApplicationContext;
         2: .line 45
            return
        end local 1 // org.springframework.context.ApplicationContext applicationContext
        end local 0 // org.springframework.boot.context.properties.PropertySourcesDeducer this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    3     0                this  Lorg/springframework/boot/context/properties/PropertySourcesDeducer;
            0    3     1  applicationContext  Lorg/springframework/context/ApplicationContext;
    MethodParameters:
                    Name  Flags
      applicationContext  

  org.springframework.core.env.PropertySources getPropertySources();
    descriptor: ()Lorg/springframework/core/env/PropertySources;
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // org.springframework.boot.context.properties.PropertySourcesDeducer this
         0: .line 48
            aload 0 /* this */
            invokevirtual org.springframework.boot.context.properties.PropertySourcesDeducer.getSinglePropertySourcesPlaceholderConfigurer:()Lorg/springframework/context/support/PropertySourcesPlaceholderConfigurer;
            astore 1 /* configurer */
        start local 1 // org.springframework.context.support.PropertySourcesPlaceholderConfigurer configurer
         1: .line 49
            aload 1 /* configurer */
            ifnull 3
         2: .line 50
            aload 1 /* configurer */
            invokevirtual org.springframework.context.support.PropertySourcesPlaceholderConfigurer.getAppliedPropertySources:()Lorg/springframework/core/env/PropertySources;
            areturn
         3: .line 52
      StackMap locals: org.springframework.context.support.PropertySourcesPlaceholderConfigurer
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.springframework.boot.context.properties.PropertySourcesDeducer.extractEnvironmentPropertySources:()Lorg/springframework/core/env/MutablePropertySources;
            astore 2 /* sources */
        start local 2 // org.springframework.core.env.MutablePropertySources sources
         4: .line 53
            aload 2 /* sources */
            ifnull 5
            iconst_1
            goto 6
      StackMap locals: org.springframework.core.env.MutablePropertySources
      StackMap stack:
         5: iconst_0
         6: .line 54
      StackMap locals:
      StackMap stack: int
            ldc "Unable to obtain PropertySources from PropertySourcesPlaceholderConfigurer or Environment"
         7: .line 53
            invokestatic org.springframework.util.Assert.state:(ZLjava/lang/String;)V
         8: .line 55
            aload 2 /* sources */
            areturn
        end local 2 // org.springframework.core.env.MutablePropertySources sources
        end local 1 // org.springframework.context.support.PropertySourcesPlaceholderConfigurer configurer
        end local 0 // org.springframework.boot.context.properties.PropertySourcesDeducer this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    9     0        this  Lorg/springframework/boot/context/properties/PropertySourcesDeducer;
            1    9     1  configurer  Lorg/springframework/context/support/PropertySourcesPlaceholderConfigurer;
            4    9     2     sources  Lorg/springframework/core/env/MutablePropertySources;

  private org.springframework.context.support.PropertySourcesPlaceholderConfigurer getSinglePropertySourcesPlaceholderConfigurer();
    descriptor: ()Lorg/springframework/context/support/PropertySourcesPlaceholderConfigurer;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // org.springframework.boot.context.properties.PropertySourcesDeducer this
         0: .line 60
            aload 0 /* this */
            getfield org.springframework.boot.context.properties.PropertySourcesDeducer.applicationContext:Lorg/springframework/context/ApplicationContext;
         1: .line 61
            ldc Lorg/springframework/context/support/PropertySourcesPlaceholderConfigurer;
            iconst_0
            iconst_0
            invokeinterface org.springframework.context.ApplicationContext.getBeansOfType:(Ljava/lang/Class;ZZ)Ljava/util/Map;
         2: .line 60
            astore 1 /* beans */
        start local 1 // java.util.Map beans
         3: .line 62
            aload 1 /* beans */
            invokeinterface java.util.Map.size:()I
            iconst_1
            if_icmpne 5
         4: .line 63
            aload 1 /* beans */
            invokeinterface java.util.Map.values:()Ljava/util/Collection;
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.springframework.context.support.PropertySourcesPlaceholderConfigurer
            areturn
         5: .line 65
      StackMap locals: java.util.Map
      StackMap stack:
            aload 1 /* beans */
            invokeinterface java.util.Map.size:()I
            iconst_1
            if_icmple 9
            getstatic org.springframework.boot.context.properties.PropertySourcesDeducer.logger:Lorg/apache/commons/logging/Log;
            invokeinterface org.apache.commons.logging.Log.isWarnEnabled:()Z
            ifeq 9
         6: .line 66
            getstatic org.springframework.boot.context.properties.PropertySourcesDeducer.logger:Lorg/apache/commons/logging/Log;
            new java.lang.StringBuilder
            dup
            ldc "Multiple PropertySourcesPlaceholderConfigurer beans registered "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* beans */
            invokeinterface java.util.Map.keySet:()Ljava/util/Set;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
         7: .line 67
            ldc ", falling back to Environment"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         8: .line 66
            invokeinterface org.apache.commons.logging.Log.warn:(Ljava/lang/Object;)V
         9: .line 69
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 1 // java.util.Map beans
        end local 0 // org.springframework.boot.context.properties.PropertySourcesDeducer this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   10     0   this  Lorg/springframework/boot/context/properties/PropertySourcesDeducer;
            3   10     1  beans  Ljava/util/Map<Ljava/lang/String;Lorg/springframework/context/support/PropertySourcesPlaceholderConfigurer;>;

  private org.springframework.core.env.MutablePropertySources extractEnvironmentPropertySources();
    descriptor: ()Lorg/springframework/core/env/MutablePropertySources;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=1, locals=2, args_size=1
        start local 0 // org.springframework.boot.context.properties.PropertySourcesDeducer this
         0: .line 73
            aload 0 /* this */
            getfield org.springframework.boot.context.properties.PropertySourcesDeducer.applicationContext:Lorg/springframework/context/ApplicationContext;
            invokeinterface org.springframework.context.ApplicationContext.getEnvironment:()Lorg/springframework/core/env/Environment;
            astore 1 /* environment */
        start local 1 // org.springframework.core.env.Environment environment
         1: .line 74
            aload 1 /* environment */
            instanceof org.springframework.core.env.ConfigurableEnvironment
            ifeq 3
         2: .line 75
            aload 1 /* environment */
            checkcast org.springframework.core.env.ConfigurableEnvironment
            invokeinterface org.springframework.core.env.ConfigurableEnvironment.getPropertySources:()Lorg/springframework/core/env/MutablePropertySources;
            areturn
         3: .line 77
      StackMap locals: org.springframework.core.env.Environment
      StackMap stack:
            aconst_null
            areturn
        end local 1 // org.springframework.core.env.Environment environment
        end local 0 // org.springframework.boot.context.properties.PropertySourcesDeducer this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    4     0         this  Lorg/springframework/boot/context/properties/PropertySourcesDeducer;
            1    4     1  environment  Lorg/springframework/core/env/Environment;
}
SourceFile: "PropertySourcesDeducer.java"