public class com.netflix.hystrix.util.InternMap<K, V>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.netflix.hystrix.util.InternMap
  super_class: java.lang.Object
{
  private final java.util.concurrent.ConcurrentMap<K, V> storage;
    descriptor: Ljava/util/concurrent/ConcurrentMap;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/concurrent/ConcurrentMap<TK;TV;>;

  private final com.netflix.hystrix.util.InternMap$ValueConstructor<K, V> valueConstructor;
    descriptor: Lcom/netflix/hystrix/util/InternMap$ValueConstructor;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Lcom/netflix/hystrix/util/InternMap$ValueConstructor<TK;TV;>;

  public void <init>(com.netflix.hystrix.util.InternMap$ValueConstructor<K, V>);
    descriptor: (Lcom/netflix/hystrix/util/InternMap$ValueConstructor;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.netflix.hystrix.util.InternMap this
        start local 1 // com.netflix.hystrix.util.InternMap$ValueConstructor valueConstructor
         0: .line 17
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 10
            aload 0 /* this */
            new java.util.concurrent.ConcurrentHashMap
            dup
            invokespecial java.util.concurrent.ConcurrentHashMap.<init>:()V
            putfield com.netflix.hystrix.util.InternMap.storage:Ljava/util/concurrent/ConcurrentMap;
         2: .line 18
            aload 0 /* this */
            aload 1 /* valueConstructor */
            putfield com.netflix.hystrix.util.InternMap.valueConstructor:Lcom/netflix/hystrix/util/InternMap$ValueConstructor;
         3: .line 19
            return
        end local 1 // com.netflix.hystrix.util.InternMap$ValueConstructor valueConstructor
        end local 0 // com.netflix.hystrix.util.InternMap this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    4     0              this  Lcom/netflix/hystrix/util/InternMap<TK;TV;>;
            0    4     1  valueConstructor  Lcom/netflix/hystrix/util/InternMap$ValueConstructor<TK;TV;>;
    Signature: (Lcom/netflix/hystrix/util/InternMap$ValueConstructor<TK;TV;>;)V
    MethodParameters:
                  Name  Flags
      valueConstructor  

  public V interned();
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // com.netflix.hystrix.util.InternMap this
        start local 1 // java.lang.Object key
         0: .line 22
            aload 0 /* this */
            getfield com.netflix.hystrix.util.InternMap.storage:Ljava/util/concurrent/ConcurrentMap;
            aload 1 /* key */
            invokeinterface java.util.concurrent.ConcurrentMap.get:(Ljava/lang/Object;)Ljava/lang/Object;
            astore 2 /* existingKey */
        start local 2 // java.lang.Object existingKey
         1: .line 23
            aconst_null
            astore 3 /* newKey */
        start local 3 // java.lang.Object newKey
         2: .line 24
            aload 2 /* existingKey */
            ifnonnull 5
         3: .line 25
            aload 0 /* this */
            getfield com.netflix.hystrix.util.InternMap.valueConstructor:Lcom/netflix/hystrix/util/InternMap$ValueConstructor;
            aload 1 /* key */
            invokeinterface com.netflix.hystrix.util.InternMap$ValueConstructor.create:(Ljava/lang/Object;)Ljava/lang/Object;
            astore 3 /* newKey */
         4: .line 26
            aload 0 /* this */
            getfield com.netflix.hystrix.util.InternMap.storage:Ljava/util/concurrent/ConcurrentMap;
            aload 1 /* key */
            aload 3 /* newKey */
            invokeinterface java.util.concurrent.ConcurrentMap.putIfAbsent:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            astore 2 /* existingKey */
         5: .line 28
      StackMap locals: java.lang.Object java.lang.Object
      StackMap stack:
            aload 2 /* existingKey */
            ifnull 6
            aload 2 /* existingKey */
            goto 7
      StackMap locals:
      StackMap stack:
         6: aload 3 /* newKey */
      StackMap locals:
      StackMap stack: java.lang.Object
         7: areturn
        end local 3 // java.lang.Object newKey
        end local 2 // java.lang.Object existingKey
        end local 1 // java.lang.Object key
        end local 0 // com.netflix.hystrix.util.InternMap this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    8     0         this  Lcom/netflix/hystrix/util/InternMap<TK;TV;>;
            0    8     1          key  TK;
            1    8     2  existingKey  TV;
            2    8     3       newKey  TV;
    Signature: (TK;)TV;
    MethodParameters:
      Name  Flags
      key   

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.netflix.hystrix.util.InternMap this
         0: .line 32
            aload 0 /* this */
            getfield com.netflix.hystrix.util.InternMap.storage:Ljava/util/concurrent/ConcurrentMap;
            invokeinterface java.util.concurrent.ConcurrentMap.size:()I
            ireturn
        end local 0 // com.netflix.hystrix.util.InternMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/netflix/hystrix/util/InternMap<TK;TV;>;
}
Signature: <K:Ljava/lang/Object;V:Ljava/lang/Object;>Ljava/lang/Object;
SourceFile: "InternMap.java"
NestMembers:
  com.netflix.hystrix.util.InternMap$ValueConstructor
InnerClasses:
  public abstract ValueConstructor = com.netflix.hystrix.util.InternMap$ValueConstructor of com.netflix.hystrix.util.InternMap