public class com.netflix.config.ConfigurationWithPollingSource implements org.apache.commons.configuration.Configuration
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.netflix.config.ConfigurationWithPollingSource
  super_class: java.lang.Object
{
  private final org.apache.commons.configuration.Configuration config;
    descriptor: Lorg/apache/commons/configuration/Configuration;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final com.netflix.config.AbstractPollingScheduler scheduler;
    descriptor: Lcom/netflix/config/AbstractPollingScheduler;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(org.apache.commons.configuration.Configuration, com.netflix.config.PolledConfigurationSource, com.netflix.config.AbstractPollingScheduler);
    descriptor: (Lorg/apache/commons/configuration/Configuration;Lcom/netflix/config/PolledConfigurationSource;Lcom/netflix/config/AbstractPollingScheduler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // com.netflix.config.ConfigurationWithPollingSource this
        start local 1 // org.apache.commons.configuration.Configuration config
        start local 2 // com.netflix.config.PolledConfigurationSource source
        start local 3 // com.netflix.config.AbstractPollingScheduler scheduler
         0: .line 51
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 53
            aload 0 /* this */
            aload 1 /* config */
            putfield com.netflix.config.ConfigurationWithPollingSource.config:Lorg/apache/commons/configuration/Configuration;
         2: .line 54
            aload 0 /* this */
            aload 3 /* scheduler */
            putfield com.netflix.config.ConfigurationWithPollingSource.scheduler:Lcom/netflix/config/AbstractPollingScheduler;
         3: .line 55
            aload 3 /* scheduler */
            aload 2 /* source */
            aload 0 /* this */
            invokevirtual com.netflix.config.AbstractPollingScheduler.startPolling:(Lcom/netflix/config/PolledConfigurationSource;Lorg/apache/commons/configuration/Configuration;)V
         4: .line 56
            return
        end local 3 // com.netflix.config.AbstractPollingScheduler scheduler
        end local 2 // com.netflix.config.PolledConfigurationSource source
        end local 1 // org.apache.commons.configuration.Configuration config
        end local 0 // com.netflix.config.ConfigurationWithPollingSource this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Lcom/netflix/config/ConfigurationWithPollingSource;
            0    5     1     config  Lorg/apache/commons/configuration/Configuration;
            0    5     2     source  Lcom/netflix/config/PolledConfigurationSource;
            0    5     3  scheduler  Lcom/netflix/config/AbstractPollingScheduler;
    MethodParameters:
           Name  Flags
      config     
      source     
      scheduler  

  public final org.apache.commons.configuration.Configuration getConfiguration();
    descriptor: ()Lorg/apache/commons/configuration/Configuration;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.netflix.config.ConfigurationWithPollingSource this
         0: .line 59
            aload 0 /* this */
            getfield com.netflix.config.ConfigurationWithPollingSource.config:Lorg/apache/commons/configuration/Configuration;
            areturn
        end local 0 // com.netflix.config.ConfigurationWithPollingSource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/netflix/config/ConfigurationWithPollingSource;

  public final void stopPolling();
    descriptor: ()V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.netflix.config.ConfigurationWithPollingSource this
         0: .line 63
            aload 0 /* this */
            getfield com.netflix.config.ConfigurationWithPollingSource.scheduler:Lcom/netflix/config/AbstractPollingScheduler;
            invokevirtual com.netflix.config.AbstractPollingScheduler.stop:()V
         1: .line 64
            return
        end local 0 // com.netflix.config.ConfigurationWithPollingSource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/netflix/config/ConfigurationWithPollingSource;

  public void addProperty(java.lang.String, java.lang.Object);
    descriptor: (Ljava/lang/String;Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.netflix.config.ConfigurationWithPollingSource this
        start local 1 // java.lang.String key
        start local 2 // java.lang.Object value
         0: .line 71
            aload 0 /* this */
            getfield com.netflix.config.ConfigurationWithPollingSource.config:Lorg/apache/commons/configuration/Configuration;
            aload 1 /* key */
            aload 2 /* value */
            invokeinterface org.apache.commons.configuration.Configuration.addProperty:(Ljava/lang/String;Ljava/lang/Object;)V
         1: .line 72
            return
        end local 2 // java.lang.Object value
        end local 1 // java.lang.String key
        end local 0 // com.netflix.config.ConfigurationWithPollingSource this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lcom/netflix/config/ConfigurationWithPollingSource;
            0    2     1    key  Ljava/lang/String;
            0    2     2  value  Ljava/lang/Object;
    MethodParameters:
       Name  Flags
      key    
      value  

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.netflix.config.ConfigurationWithPollingSource this
         0: .line 79
            aload 0 /* this */
            getfield com.netflix.config.ConfigurationWithPollingSource.config:Lorg/apache/commons/configuration/Configuration;
            invokeinterface org.apache.commons.configuration.Configuration.clear:()V
         1: .line 80
            return
        end local 0 // com.netflix.config.ConfigurationWithPollingSource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/netflix/config/ConfigurationWithPollingSource;

  public void clearProperty(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.netflix.config.ConfigurationWithPollingSource this
        start local 1 // java.lang.String key
         0: .line 87
            aload 0 /* this */
            getfield com.netflix.config.ConfigurationWithPollingSource.config:Lorg/apache/commons/configuration/Configuration;
            aload 1 /* key */
            invokeinterface org.apache.commons.configuration.Configuration.clearProperty:(Ljava/lang/String;)V
         1: .line 88
            return
        end local 1 // java.lang.String key
        end local 0 // com.netflix.config.ConfigurationWithPollingSource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/netflix/config/ConfigurationWithPollingSource;
            0    2     1   key  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      key   

  public boolean containsKey(java.lang.String);
    descriptor: (Ljava/lang/String;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.netflix.config.ConfigurationWithPollingSource this
        start local 1 // java.lang.String arg0
         0: .line 96
            aload 0 /* this */
            getfield com.netflix.config.ConfigurationWithPollingSource.config:Lorg/apache/commons/configuration/Configuration;
            aload 1 /* arg0 */
            invokeinterface org.apache.commons.configuration.Configuration.containsKey:(Ljava/lang/String;)Z
            ireturn
        end local 1 // java.lang.String arg0
        end local 0 // com.netflix.config.ConfigurationWithPollingSource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/netflix/config/ConfigurationWithPollingSource;
            0    1     1  arg0  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      arg0  

  public java.math.BigDecimal getBigDecimal(java.lang.String, java.math.BigDecimal);
    descriptor: (Ljava/lang/String;Ljava/math/BigDecimal;)Ljava/math/BigDecimal;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.netflix.config.ConfigurationWithPollingSource this
        start local 1 // java.lang.String key
        start local 2 // java.math.BigDecimal defaultValue
         0: .line 105
            aload 0 /* this */
            getfield com.netflix.config.ConfigurationWithPollingSource.config:Lorg/apache/commons/configuration/Configuration;
            aload 1 /* key */
            aload 2 /* defaultValue */
            invokeinterface org.apache.commons.configuration.Configuration.getBigDecimal:(Ljava/lang/String;Ljava/math/BigDecimal;)Ljava/math/BigDecimal;
            areturn
        end local 2 // java.math.BigDecimal defaultValue
        end local 1 // java.lang.String key
        end local 0 // com.netflix.config.ConfigurationWithPollingSource this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lcom/netflix/config/ConfigurationWithPollingSource;
            0    1     1           key  Ljava/lang/String;
            0    1     2  defaultValue  Ljava/math/BigDecimal;
    MethodParameters:
              Name  Flags
      key           
      defaultValue  

  public java.math.BigDecimal getBigDecimal(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/math/BigDecimal;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.netflix.config.ConfigurationWithPollingSource this
        start local 1 // java.lang.String key
         0: .line 113
            aload 0 /* this */
            getfield com.netflix.config.ConfigurationWithPollingSource.config:Lorg/apache/commons/configuration/Configuration;
            aload 1 /* key */
            invokeinterface org.apache.commons.configuration.Configuration.getBigDecimal:(Ljava/lang/String;)Ljava/math/BigDecimal;
            areturn
        end local 1 // java.lang.String key
        end local 0 // com.netflix.config.ConfigurationWithPollingSource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/netflix/config/ConfigurationWithPollingSource;
            0    1     1   key  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      key   

  public java.math.BigInteger getBigInteger(java.lang.String, java.math.BigInteger);
    descriptor: (Ljava/lang/String;Ljava/math/BigInteger;)Ljava/math/BigInteger;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.netflix.config.ConfigurationWithPollingSource this
        start local 1 // java.lang.String key
        start local 2 // java.math.BigInteger defaultValue
         0: .line 121
            aload 0 /* this */
            getfield com.netflix.config.ConfigurationWithPollingSource.config:Lorg/apache/commons/configuration/Configuration;
            aload 1 /* key */
            aload 2 /* defaultValue */
            invokeinterface org.apache.commons.configuration.Configuration.getBigInteger:(Ljava/lang/String;Ljava/math/BigInteger;)Ljava/math/BigInteger;
            areturn
        end local 2 // java.math.BigInteger defaultValue
        end local 1 // java.lang.String key
        end local 0 // com.netflix.config.ConfigurationWithPollingSource this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lcom/netflix/config/ConfigurationWithPollingSource;
            0    1     1           key  Ljava/lang/String;
            0    1     2  defaultValue  Ljava/math/BigInteger;
    MethodParameters:
              Name  Flags
      key           
      defaultValue  

  public java.math.BigInteger getBigInteger(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/math/BigInteger;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.netflix.config.ConfigurationWithPollingSource this
        start local 1 // java.lang.String key
         0: .line 129
            aload 0 /* this */
            getfield com.netflix.config.ConfigurationWithPollingSource.config:Lorg/apache/commons/configuration/Configuration;
            aload 1 /* key */
            invokeinterface org.apache.commons.configuration.Configuration.getBigInteger:(Ljava/lang/String;)Ljava/math/BigInteger;
            areturn
        end local 1 // java.lang.String key
        end local 0 // com.netflix.config.ConfigurationWithPollingSource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/netflix/config/ConfigurationWithPollingSource;
            0    1     1   key  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      key   

  public boolean getBoolean(java.lang.String, boolean);
    descriptor: (Ljava/lang/String;Z)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.netflix.config.ConfigurationWithPollingSource this
        start local 1 // java.lang.String key
        start local 2 // boolean defaultValue
         0: .line 137
            aload 0 /* this */
            getfield com.netflix.config.ConfigurationWithPollingSource.config:Lorg/apache/commons/configuration/Configuration;
            aload 1 /* key */
            iload 2 /* defaultValue */
            invokeinterface org.apache.commons.configuration.Configuration.getBoolean:(Ljava/lang/String;Z)Z
            ireturn
        end local 2 // boolean defaultValue
        end local 1 // java.lang.String key
        end local 0 // com.netflix.config.ConfigurationWithPollingSource this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lcom/netflix/config/ConfigurationWithPollingSource;
            0    1     1           key  Ljava/lang/String;
            0    1     2  defaultValue  Z
    MethodParameters:
              Name  Flags
      key           
      defaultValue  

  public java.lang.Boolean getBoolean(java.lang.String, java.lang.Boolean);
    descriptor: (Ljava/lang/String;Ljava/lang/Boolean;)Ljava/lang/Boolean;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.netflix.config.ConfigurationWithPollingSource this
        start local 1 // java.lang.String key
        start local 2 // java.lang.Boolean defaultValue
         0: .line 145
            aload 0 /* this */
            getfield com.netflix.config.ConfigurationWithPollingSource.config:Lorg/apache/commons/configuration/Configuration;
            aload 1 /* key */
            aload 2 /* defaultValue */
            invokeinterface org.apache.commons.configuration.Configuration.getBoolean:(Ljava/lang/String;Ljava/lang/Boolean;)Ljava/lang/Boolean;
            areturn
        end local 2 // java.lang.Boolean defaultValue
        end local 1 // java.lang.String key
        end local 0 // com.netflix.config.ConfigurationWithPollingSource this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lcom/netflix/config/ConfigurationWithPollingSource;
            0    1     1           key  Ljava/lang/String;
            0    1     2  defaultValue  Ljava/lang/Boolean;
    MethodParameters:
              Name  Flags
      key           
      defaultValue  

  public boolean getBoolean(java.lang.String);
    descriptor: (Ljava/lang/String;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.netflix.config.ConfigurationWithPollingSource this
        start local 1 // java.lang.String key
         0: .line 153
            aload 0 /* this */
            getfield com.netflix.config.ConfigurationWithPollingSource.config:Lorg/apache/commons/configuration/Configuration;
            aload 1 /* key */
            invokeinterface org.apache.commons.configuration.Configuration.getBoolean:(Ljava/lang/String;)Z
            ireturn
        end local 1 // java.lang.String key
        end local 0 // com.netflix.config.ConfigurationWithPollingSource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/netflix/config/ConfigurationWithPollingSource;
            0    1     1   key  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      key   

  public byte getByte(java.lang.String, byte);
    descriptor: (Ljava/lang/String;B)B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.netflix.config.ConfigurationWithPollingSource this
        start local 1 // java.lang.String key
        start local 2 // byte defaultValue
         0: .line 161
            aload 0 /* this */
            getfield com.netflix.config.ConfigurationWithPollingSource.config:Lorg/apache/commons/configuration/Configuration;
            aload 1 /* key */
            iload 2 /* defaultValue */
            invokeinterface org.apache.commons.configuration.Configuration.getByte:(Ljava/lang/String;B)B
            ireturn
        end local 2 // byte defaultValue
        end local 1 // java.lang.String key
        end local 0 // com.netflix.config.ConfigurationWithPollingSource this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lcom/netflix/config/ConfigurationWithPollingSource;
            0    1     1           key  Ljava/lang/String;
            0    1     2  defaultValue  B
    MethodParameters:
              Name  Flags
      key           
      defaultValue  

  public java.lang.Byte getByte(java.lang.String, java.lang.Byte);
    descriptor: (Ljava/lang/String;Ljava/lang/Byte;)Ljava/lang/Byte;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.netflix.config.ConfigurationWithPollingSource this
        start local 1 // java.lang.String key
        start local 2 // java.lang.Byte defaultValue
         0: .line 169
            aload 0 /* this */
            getfield com.netflix.config.ConfigurationWithPollingSource.config:Lorg/apache/commons/configuration/Configuration;
            aload 1 /* key */
            aload 2 /* defaultValue */
            invokeinterface org.apache.commons.configuration.Configuration.getByte:(Ljava/lang/String;Ljava/lang/Byte;)Ljava/lang/Byte;
            areturn
        end local 2 // java.lang.Byte defaultValue
        end local 1 // java.lang.String key
        end local 0 // com.netflix.config.ConfigurationWithPollingSource this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lcom/netflix/config/ConfigurationWithPollingSource;
            0    1     1           key  Ljava/lang/String;
            0    1     2  defaultValue  Ljava/lang/Byte;
    MethodParameters:
              Name  Flags
      key           
      defaultValue  

  public byte getByte(java.lang.String);
    descriptor: (Ljava/lang/String;)B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.netflix.config.ConfigurationWithPollingSource this
        start local 1 // java.lang.String key
         0: .line 177
            aload 0 /* this */
            getfield com.netflix.config.ConfigurationWithPollingSource.config:Lorg/apache/commons/configuration/Configuration;
            aload 1 /* key */
            invokeinterface org.apache.commons.configuration.Configuration.getByte:(Ljava/lang/String;)B
            ireturn
        end local 1 // java.lang.String key
        end local 0 // com.netflix.config.ConfigurationWithPollingSource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/netflix/config/ConfigurationWithPollingSource;
            0    1     1   key  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      key   

  public double getDouble(java.lang.String, double);
    descriptor: (Ljava/lang/String;D)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // com.netflix.config.ConfigurationWithPollingSource this
        start local 1 // java.lang.String key
        start local 2 // double defaultValue
         0: .line 185
            aload 0 /* this */
            getfield com.netflix.config.ConfigurationWithPollingSource.config:Lorg/apache/commons/configuration/Configuration;
            aload 1 /* key */
            dload 2 /* defaultValue */
            invokeinterface org.apache.commons.configuration.Configuration.getDouble:(Ljava/lang/String;D)D
            dreturn
        end local 2 // double defaultValue
        end local 1 // java.lang.String key
        end local 0 // com.netflix.config.ConfigurationWithPollingSource this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lcom/netflix/config/ConfigurationWithPollingSource;
            0    1     1           key  Ljava/lang/String;
            0    1     2  defaultValue  D
    MethodParameters:
              Name  Flags
      key           
      defaultValue  

  public java.lang.Double getDouble(java.lang.String, java.lang.Double);
    descriptor: (Ljava/lang/String;Ljava/lang/Double;)Ljava/lang/Double;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.netflix.config.ConfigurationWithPollingSource this
        start local 1 // java.lang.String key
        start local 2 // java.lang.Double defaultValue
         0: .line 193
            aload 0 /* this */
            getfield com.netflix.config.ConfigurationWithPollingSource.config:Lorg/apache/commons/configuration/Configuration;
            aload 1 /* key */
            aload 2 /* defaultValue */
            invokeinterface org.apache.commons.configuration.Configuration.getDouble:(Ljava/lang/String;Ljava/lang/Double;)Ljava/lang/Double;
            areturn
        end local 2 // java.lang.Double defaultValue
        end local 1 // java.lang.String key
        end local 0 // com.netflix.config.ConfigurationWithPollingSource this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lcom/netflix/config/ConfigurationWithPollingSource;
            0    1     1           key  Ljava/lang/String;
            0    1     2  defaultValue  Ljava/lang/Double;
    MethodParameters:
              Name  Flags
      key           
      defaultValue  

  public double getDouble(java.lang.String);
    descriptor: (Ljava/lang/String;)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.netflix.config.ConfigurationWithPollingSource this
        start local 1 // java.lang.String key
         0: .line 201
            aload 0 /* this */
            getfield com.netflix.config.ConfigurationWithPollingSource.config:Lorg/apache/commons/configuration/Configuration;
            aload 1 /* key */
            invokeinterface org.apache.commons.configuration.Configuration.getDouble:(Ljava/lang/String;)D
            dreturn
        end local 1 // java.lang.String key
        end local 0 // com.netflix.config.ConfigurationWithPollingSource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/netflix/config/ConfigurationWithPollingSource;
            0    1     1   key  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      key   

  public float getFloat(java.lang.String, float);
    descriptor: (Ljava/lang/String;F)F
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.netflix.config.ConfigurationWithPollingSource this
        start local 1 // java.lang.String key
        start local 2 // float defaultValue
         0: .line 209
            aload 0 /* this */
            getfield com.netflix.config.ConfigurationWithPollingSource.config:Lorg/apache/commons/configuration/Configuration;
            aload 1 /* key */
            fload 2 /* defaultValue */
            invokeinterface org.apache.commons.configuration.Configuration.getFloat:(Ljava/lang/String;F)F
            freturn
        end local 2 // float defaultValue
        end local 1 // java.lang.String key
        end local 0 // com.netflix.config.ConfigurationWithPollingSource this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lcom/netflix/config/ConfigurationWithPollingSource;
            0    1     1           key  Ljava/lang/String;
            0    1     2  defaultValue  F
    MethodParameters:
              Name  Flags
      key           
      defaultValue  

  public java.lang.Float getFloat(java.lang.String, java.lang.Float);
    descriptor: (Ljava/lang/String;Ljava/lang/Float;)Ljava/lang/Float;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.netflix.config.ConfigurationWithPollingSource this
        start local 1 // java.lang.String key
        start local 2 // java.lang.Float defaultValue
         0: .line 217
            aload 0 /* this */
            getfield com.netflix.config.ConfigurationWithPollingSource.config:Lorg/apache/commons/configuration/Configuration;
            aload 1 /* key */
            aload 2 /* defaultValue */
            invokeinterface org.apache.commons.configuration.Configuration.getFloat:(Ljava/lang/String;Ljava/lang/Float;)Ljava/lang/Float;
            areturn
        end local 2 // java.lang.Float defaultValue
        end local 1 // java.lang.String key
        end local 0 // com.netflix.config.ConfigurationWithPollingSource this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lcom/netflix/config/ConfigurationWithPollingSource;
            0    1     1           key  Ljava/lang/String;
            0    1     2  defaultValue  Ljava/lang/Float;
    MethodParameters:
              Name  Flags
      key           
      defaultValue  

  public float getFloat(java.lang.String);
    descriptor: (Ljava/lang/String;)F
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.netflix.config.ConfigurationWithPollingSource this
        start local 1 // java.lang.String key
         0: .line 225
            aload 0 /* this */
            getfield com.netflix.config.ConfigurationWithPollingSource.config:Lorg/apache/commons/configuration/Configuration;
            aload 1 /* key */
            invokeinterface org.apache.commons.configuration.Configuration.getFloat:(Ljava/lang/String;)F
            freturn
        end local 1 // java.lang.String key
        end local 0 // com.netflix.config.ConfigurationWithPollingSource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/netflix/config/ConfigurationWithPollingSource;
            0    1     1   key  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      key   

  public int getInt(java.lang.String, int);
    descriptor: (Ljava/lang/String;I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.netflix.config.ConfigurationWithPollingSource this
        start local 1 // java.lang.String key
        start local 2 // int defaultValue
         0: .line 233
            aload 0 /* this */
            getfield com.netflix.config.ConfigurationWithPollingSource.config:Lorg/apache/commons/configuration/Configuration;
            aload 1 /* key */
            iload 2 /* defaultValue */
            invokeinterface org.apache.commons.configuration.Configuration.getInt:(Ljava/lang/String;I)I
            ireturn
        end local 2 // int defaultValue
        end local 1 // java.lang.String key
        end local 0 // com.netflix.config.ConfigurationWithPollingSource this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lcom/netflix/config/ConfigurationWithPollingSource;
            0    1     1           key  Ljava/lang/String;
            0    1     2  defaultValue  I
    MethodParameters:
              Name  Flags
      key           
      defaultValue  

  public int getInt(java.lang.String);
    descriptor: (Ljava/lang/String;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.netflix.config.ConfigurationWithPollingSource this
        start local 1 // java.lang.String key
         0: .line 241
            aload 0 /* this */
            getfield com.netflix.config.ConfigurationWithPollingSource.config:Lorg/apache/commons/configuration/Configuration;
            aload 1 /* key */
            invokeinterface org.apache.commons.configuration.Configuration.getInt:(Ljava/lang/String;)I
            ireturn
        end local 1 // java.lang.String key
        end local 0 // com.netflix.config.ConfigurationWithPollingSource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/netflix/config/ConfigurationWithPollingSource;
            0    1     1   key  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      key   

  public java.lang.Integer getInteger(java.lang.String, java.lang.Integer);
    descriptor: (Ljava/lang/String;Ljava/lang/Integer;)Ljava/lang/Integer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.netflix.config.ConfigurationWithPollingSource this
        start local 1 // java.lang.String key
        start local 2 // java.lang.Integer defaultValue
         0: .line 249
            aload 0 /* this */
            getfield com.netflix.config.ConfigurationWithPollingSource.config:Lorg/apache/commons/configuration/Configuration;
            aload 1 /* key */
            aload 2 /* defaultValue */
            invokeinterface org.apache.commons.configuration.Configuration.getInteger:(Ljava/lang/String;Ljava/lang/Integer;)Ljava/lang/Integer;
            areturn
        end local 2 // java.lang.Integer defaultValue
        end local 1 // java.lang.String key
        end local 0 // com.netflix.config.ConfigurationWithPollingSource this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lcom/netflix/config/ConfigurationWithPollingSource;
            0    1     1           key  Ljava/lang/String;
            0    1     2  defaultValue  Ljava/lang/Integer;
    MethodParameters:
              Name  Flags
      key           
      defaultValue  

  public java.util.Iterator getKeys();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.netflix.config.ConfigurationWithPollingSource this
         0: .line 258
            aload 0 /* this */
            getfield com.netflix.config.ConfigurationWithPollingSource.config:Lorg/apache/commons/configuration/Configuration;
            invokeinterface org.apache.commons.configuration.Configuration.getKeys:()Ljava/util/Iterator;
            areturn
        end local 0 // com.netflix.config.ConfigurationWithPollingSource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/netflix/config/ConfigurationWithPollingSource;

  public java.util.Iterator getKeys(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/util/Iterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.netflix.config.ConfigurationWithPollingSource this
        start local 1 // java.lang.String prefix
         0: .line 266
            aload 0 /* this */
            getfield com.netflix.config.ConfigurationWithPollingSource.config:Lorg/apache/commons/configuration/Configuration;
            aload 1 /* prefix */
            invokeinterface org.apache.commons.configuration.Configuration.getKeys:(Ljava/lang/String;)Ljava/util/Iterator;
            areturn
        end local 1 // java.lang.String prefix
        end local 0 // com.netflix.config.ConfigurationWithPollingSource this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lcom/netflix/config/ConfigurationWithPollingSource;
            0    1     1  prefix  Ljava/lang/String;
    MethodParameters:
        Name  Flags
      prefix  

  public java.util.List getList(java.lang.String, java.util.List);
    descriptor: (Ljava/lang/String;Ljava/util/List;)Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.netflix.config.ConfigurationWithPollingSource this
        start local 1 // java.lang.String key
        start local 2 // java.util.List defaultValue
         0: .line 274
            aload 0 /* this */
            getfield com.netflix.config.ConfigurationWithPollingSource.config:Lorg/apache/commons/configuration/Configuration;
            aload 1 /* key */
            aload 2 /* defaultValue */
            invokeinterface org.apache.commons.configuration.Configuration.getList:(Ljava/lang/String;Ljava/util/List;)Ljava/util/List;
            areturn
        end local 2 // java.util.List defaultValue
        end local 1 // java.lang.String key
        end local 0 // com.netflix.config.ConfigurationWithPollingSource this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lcom/netflix/config/ConfigurationWithPollingSource;
            0    1     1           key  Ljava/lang/String;
            0    1     2  defaultValue  Ljava/util/List;
    MethodParameters:
              Name  Flags
      key           
      defaultValue  

  public java.util.List getList(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.netflix.config.ConfigurationWithPollingSource this
        start local 1 // java.lang.String key
         0: .line 282
            aload 0 /* this */
            getfield com.netflix.config.ConfigurationWithPollingSource.config:Lorg/apache/commons/configuration/Configuration;
            aload 1 /* key */
            invokeinterface org.apache.commons.configuration.Configuration.getList:(Ljava/lang/String;)Ljava/util/List;
            areturn
        end local 1 // java.lang.String key
        end local 0 // com.netflix.config.ConfigurationWithPollingSource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/netflix/config/ConfigurationWithPollingSource;
            0    1     1   key  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      key   

  public long getLong(java.lang.String, long);
    descriptor: (Ljava/lang/String;J)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // com.netflix.config.ConfigurationWithPollingSource this
        start local 1 // java.lang.String key
        start local 2 // long defaultValue
         0: .line 290
            aload 0 /* this */
            getfield com.netflix.config.ConfigurationWithPollingSource.config:Lorg/apache/commons/configuration/Configuration;
            aload 1 /* key */
            lload 2 /* defaultValue */
            invokeinterface org.apache.commons.configuration.Configuration.getLong:(Ljava/lang/String;J)J
            lreturn
        end local 2 // long defaultValue
        end local 1 // java.lang.String key
        end local 0 // com.netflix.config.ConfigurationWithPollingSource this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lcom/netflix/config/ConfigurationWithPollingSource;
            0    1     1           key  Ljava/lang/String;
            0    1     2  defaultValue  J
    MethodParameters:
              Name  Flags
      key           
      defaultValue  

  public java.lang.Long getLong(java.lang.String, java.lang.Long);
    descriptor: (Ljava/lang/String;Ljava/lang/Long;)Ljava/lang/Long;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.netflix.config.ConfigurationWithPollingSource this
        start local 1 // java.lang.String key
        start local 2 // java.lang.Long defaultValue
         0: .line 298
            aload 0 /* this */
            getfield com.netflix.config.ConfigurationWithPollingSource.config:Lorg/apache/commons/configuration/Configuration;
            aload 1 /* key */
            aload 2 /* defaultValue */
            invokeinterface org.apache.commons.configuration.Configuration.getLong:(Ljava/lang/String;Ljava/lang/Long;)Ljava/lang/Long;
            areturn
        end local 2 // java.lang.Long defaultValue
        end local 1 // java.lang.String key
        end local 0 // com.netflix.config.ConfigurationWithPollingSource this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lcom/netflix/config/ConfigurationWithPollingSource;
            0    1     1           key  Ljava/lang/String;
            0    1     2  defaultValue  Ljava/lang/Long;
    MethodParameters:
              Name  Flags
      key           
      defaultValue  

  public long getLong(java.lang.String);
    descriptor: (Ljava/lang/String;)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.netflix.config.ConfigurationWithPollingSource this
        start local 1 // java.lang.String key
         0: .line 306
            aload 0 /* this */
            getfield com.netflix.config.ConfigurationWithPollingSource.config:Lorg/apache/commons/configuration/Configuration;
            aload 1 /* key */
            invokeinterface org.apache.commons.configuration.Configuration.getLong:(Ljava/lang/String;)J
            lreturn
        end local 1 // java.lang.String key
        end local 0 // com.netflix.config.ConfigurationWithPollingSource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/netflix/config/ConfigurationWithPollingSource;
            0    1     1   key  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      key   

  public java.util.Properties getProperties(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/util/Properties;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.netflix.config.ConfigurationWithPollingSource this
        start local 1 // java.lang.String key
         0: .line 315
            aload 0 /* this */
            getfield com.netflix.config.ConfigurationWithPollingSource.config:Lorg/apache/commons/configuration/Configuration;
            aload 1 /* key */
            invokeinterface org.apache.commons.configuration.Configuration.getProperties:(Ljava/lang/String;)Ljava/util/Properties;
            areturn
        end local 1 // java.lang.String key
        end local 0 // com.netflix.config.ConfigurationWithPollingSource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/netflix/config/ConfigurationWithPollingSource;
            0    1     1   key  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      key   

  public java.lang.Object getProperty(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.netflix.config.ConfigurationWithPollingSource this
        start local 1 // java.lang.String arg0
         0: .line 323
            aload 0 /* this */
            getfield com.netflix.config.ConfigurationWithPollingSource.config:Lorg/apache/commons/configuration/Configuration;
            aload 1 /* arg0 */
            invokeinterface org.apache.commons.configuration.Configuration.getProperty:(Ljava/lang/String;)Ljava/lang/Object;
            areturn
        end local 1 // java.lang.String arg0
        end local 0 // com.netflix.config.ConfigurationWithPollingSource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/netflix/config/ConfigurationWithPollingSource;
            0    1     1  arg0  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      arg0  

  public short getShort(java.lang.String, short);
    descriptor: (Ljava/lang/String;S)S
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.netflix.config.ConfigurationWithPollingSource this
        start local 1 // java.lang.String key
        start local 2 // short defaultValue
         0: .line 331
            aload 0 /* this */
            getfield com.netflix.config.ConfigurationWithPollingSource.config:Lorg/apache/commons/configuration/Configuration;
            aload 1 /* key */
            iload 2 /* defaultValue */
            invokeinterface org.apache.commons.configuration.Configuration.getShort:(Ljava/lang/String;S)S
            ireturn
        end local 2 // short defaultValue
        end local 1 // java.lang.String key
        end local 0 // com.netflix.config.ConfigurationWithPollingSource this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lcom/netflix/config/ConfigurationWithPollingSource;
            0    1     1           key  Ljava/lang/String;
            0    1     2  defaultValue  S
    MethodParameters:
              Name  Flags
      key           
      defaultValue  

  public java.lang.Short getShort(java.lang.String, java.lang.Short);
    descriptor: (Ljava/lang/String;Ljava/lang/Short;)Ljava/lang/Short;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.netflix.config.ConfigurationWithPollingSource this
        start local 1 // java.lang.String key
        start local 2 // java.lang.Short defaultValue
         0: .line 339
            aload 0 /* this */
            getfield com.netflix.config.ConfigurationWithPollingSource.config:Lorg/apache/commons/configuration/Configuration;
            aload 1 /* key */
            aload 2 /* defaultValue */
            invokeinterface org.apache.commons.configuration.Configuration.getShort:(Ljava/lang/String;Ljava/lang/Short;)Ljava/lang/Short;
            areturn
        end local 2 // java.lang.Short defaultValue
        end local 1 // java.lang.String key
        end local 0 // com.netflix.config.ConfigurationWithPollingSource this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lcom/netflix/config/ConfigurationWithPollingSource;
            0    1     1           key  Ljava/lang/String;
            0    1     2  defaultValue  Ljava/lang/Short;
    MethodParameters:
              Name  Flags
      key           
      defaultValue  

  public short getShort(java.lang.String);
    descriptor: (Ljava/lang/String;)S
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.netflix.config.ConfigurationWithPollingSource this
        start local 1 // java.lang.String key
         0: .line 347
            aload 0 /* this */
            getfield com.netflix.config.ConfigurationWithPollingSource.config:Lorg/apache/commons/configuration/Configuration;
            aload 1 /* key */
            invokeinterface org.apache.commons.configuration.Configuration.getShort:(Ljava/lang/String;)S
            ireturn
        end local 1 // java.lang.String key
        end local 0 // com.netflix.config.ConfigurationWithPollingSource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/netflix/config/ConfigurationWithPollingSource;
            0    1     1   key  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      key   

  public java.lang.String getString(java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.netflix.config.ConfigurationWithPollingSource this
        start local 1 // java.lang.String key
        start local 2 // java.lang.String defaultValue
         0: .line 355
            aload 0 /* this */
            getfield com.netflix.config.ConfigurationWithPollingSource.config:Lorg/apache/commons/configuration/Configuration;
            aload 1 /* key */
            aload 2 /* defaultValue */
            invokeinterface org.apache.commons.configuration.Configuration.getString:(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
            areturn
        end local 2 // java.lang.String defaultValue
        end local 1 // java.lang.String key
        end local 0 // com.netflix.config.ConfigurationWithPollingSource this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lcom/netflix/config/ConfigurationWithPollingSource;
            0    1     1           key  Ljava/lang/String;
            0    1     2  defaultValue  Ljava/lang/String;
    MethodParameters:
              Name  Flags
      key           
      defaultValue  

  public java.lang.String getString(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.netflix.config.ConfigurationWithPollingSource this
        start local 1 // java.lang.String key
         0: .line 363
            aload 0 /* this */
            getfield com.netflix.config.ConfigurationWithPollingSource.config:Lorg/apache/commons/configuration/Configuration;
            aload 1 /* key */
            invokeinterface org.apache.commons.configuration.Configuration.getString:(Ljava/lang/String;)Ljava/lang/String;
            areturn
        end local 1 // java.lang.String key
        end local 0 // com.netflix.config.ConfigurationWithPollingSource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/netflix/config/ConfigurationWithPollingSource;
            0    1     1   key  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      key   

  public java.lang.String[] getStringArray(java.lang.String);
    descriptor: (Ljava/lang/String;)[Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.netflix.config.ConfigurationWithPollingSource this
        start local 1 // java.lang.String key
         0: .line 371
            aload 0 /* this */
            getfield com.netflix.config.ConfigurationWithPollingSource.config:Lorg/apache/commons/configuration/Configuration;
            aload 1 /* key */
            invokeinterface org.apache.commons.configuration.Configuration.getStringArray:(Ljava/lang/String;)[Ljava/lang/String;
            areturn
        end local 1 // java.lang.String key
        end local 0 // com.netflix.config.ConfigurationWithPollingSource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/netflix/config/ConfigurationWithPollingSource;
            0    1     1   key  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      key   

  public boolean isEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.netflix.config.ConfigurationWithPollingSource this
         0: .line 380
            aload 0 /* this */
            getfield com.netflix.config.ConfigurationWithPollingSource.config:Lorg/apache/commons/configuration/Configuration;
            invokeinterface org.apache.commons.configuration.Configuration.isEmpty:()Z
            ireturn
        end local 0 // com.netflix.config.ConfigurationWithPollingSource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/netflix/config/ConfigurationWithPollingSource;

  public void setProperty(java.lang.String, java.lang.Object);
    descriptor: (Ljava/lang/String;Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.netflix.config.ConfigurationWithPollingSource this
        start local 1 // java.lang.String key
        start local 2 // java.lang.Object value
         0: .line 389
            aload 0 /* this */
            getfield com.netflix.config.ConfigurationWithPollingSource.config:Lorg/apache/commons/configuration/Configuration;
            aload 1 /* key */
            aload 2 /* value */
            invokeinterface org.apache.commons.configuration.Configuration.setProperty:(Ljava/lang/String;Ljava/lang/Object;)V
         1: .line 390
            return
        end local 2 // java.lang.Object value
        end local 1 // java.lang.String key
        end local 0 // com.netflix.config.ConfigurationWithPollingSource this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lcom/netflix/config/ConfigurationWithPollingSource;
            0    2     1    key  Ljava/lang/String;
            0    2     2  value  Ljava/lang/Object;
    MethodParameters:
       Name  Flags
      key    
      value  

  public org.apache.commons.configuration.Configuration subset(java.lang.String);
    descriptor: (Ljava/lang/String;)Lorg/apache/commons/configuration/Configuration;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.netflix.config.ConfigurationWithPollingSource this
        start local 1 // java.lang.String prefix
         0: .line 398
            aload 0 /* this */
            getfield com.netflix.config.ConfigurationWithPollingSource.config:Lorg/apache/commons/configuration/Configuration;
            aload 1 /* prefix */
            invokeinterface org.apache.commons.configuration.Configuration.subset:(Ljava/lang/String;)Lorg/apache/commons/configuration/Configuration;
            areturn
        end local 1 // java.lang.String prefix
        end local 0 // com.netflix.config.ConfigurationWithPollingSource this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lcom/netflix/config/ConfigurationWithPollingSource;
            0    1     1  prefix  Ljava/lang/String;
    MethodParameters:
        Name  Flags
      prefix  
}
SourceFile: "ConfigurationWithPollingSource.java"