class com.google.common.collect.Maps$ValueDifferenceImpl<V> implements com.google.common.collect.MapDifference$ValueDifference<V>
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: com.google.common.collect.Maps$ValueDifferenceImpl
  super_class: java.lang.Object
{
  private final V left;
    descriptor: Ljava/lang/Object;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: TV;
    RuntimeVisibleTypeAnnotations: 
      FIELD
        org.checkerframework.checker.nullness.qual.Nullable()

  private final V right;
    descriptor: Ljava/lang/Object;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: TV;
    RuntimeVisibleTypeAnnotations: 
      FIELD
        org.checkerframework.checker.nullness.qual.Nullable()

  static <V> com.google.common.collect.MapDifference$ValueDifference<V> create(V, V);
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Lcom/google/common/collect/MapDifference$ValueDifference;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // java.lang.Object left
        start local 1 // java.lang.Object right
         0: .line 696
            new com.google.common.collect.Maps$ValueDifferenceImpl
            dup
            aload 0 /* left */
            aload 1 /* right */
            invokespecial com.google.common.collect.Maps$ValueDifferenceImpl.<init>:(Ljava/lang/Object;Ljava/lang/Object;)V
            areturn
        end local 1 // java.lang.Object right
        end local 0 // java.lang.Object left
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   left  TV;
            0    1     1  right  TV;
    Signature: <V:Ljava/lang/Object;>(TV;TV;)Lcom/google/common/collect/MapDifference$ValueDifference<TV;>;
    RuntimeVisibleTypeAnnotations: 
      METHOD_FORMAL_PARAMETER
        org.checkerframework.checker.nullness.qual.Nullable()
      METHOD_FORMAL_PARAMETER
        org.checkerframework.checker.nullness.qual.Nullable()
    MethodParameters:
       Name  Flags
      left   
      right  

  private void <init>(V, );
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // com.google.common.collect.Maps$ValueDifferenceImpl this
        start local 1 // java.lang.Object left
        start local 2 // java.lang.Object right
         0: .line 699
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 700
            aload 0 /* this */
            aload 1 /* left */
            putfield com.google.common.collect.Maps$ValueDifferenceImpl.left:Ljava/lang/Object;
         2: .line 701
            aload 0 /* this */
            aload 2 /* right */
            putfield com.google.common.collect.Maps$ValueDifferenceImpl.right:Ljava/lang/Object;
         3: .line 702
            return
        end local 2 // java.lang.Object right
        end local 1 // java.lang.Object left
        end local 0 // com.google.common.collect.Maps$ValueDifferenceImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lcom/google/common/collect/Maps$ValueDifferenceImpl<TV;>;
            0    4     1   left  TV;
            0    4     2  right  TV;
    Signature: (TV;TV;)V
    RuntimeVisibleTypeAnnotations: 
      METHOD_FORMAL_PARAMETER
        org.checkerframework.checker.nullness.qual.Nullable()
      METHOD_FORMAL_PARAMETER
        org.checkerframework.checker.nullness.qual.Nullable()
    MethodParameters:
       Name  Flags
      left   
      right  

  public V leftValue();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.collect.Maps$ValueDifferenceImpl this
         0: .line 706
            aload 0 /* this */
            getfield com.google.common.collect.Maps$ValueDifferenceImpl.left:Ljava/lang/Object;
            areturn
        end local 0 // com.google.common.collect.Maps$ValueDifferenceImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/Maps$ValueDifferenceImpl<TV;>;
    Signature: ()TV;

  public V rightValue();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.collect.Maps$ValueDifferenceImpl this
         0: .line 711
            aload 0 /* this */
            getfield com.google.common.collect.Maps$ValueDifferenceImpl.right:Ljava/lang/Object;
            areturn
        end local 0 // com.google.common.collect.Maps$ValueDifferenceImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/Maps$ValueDifferenceImpl<TV;>;
    Signature: ()TV;

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // com.google.common.collect.Maps$ValueDifferenceImpl this
        start local 1 // java.lang.Object object
         0: .line 716
            aload 1 /* object */
            instanceof com.google.common.collect.MapDifference$ValueDifference
            ifeq 6
         1: .line 717
            aload 1 /* object */
            checkcast com.google.common.collect.MapDifference$ValueDifference
            astore 2 /* that */
        start local 2 // com.google.common.collect.MapDifference$ValueDifference that
         2: .line 718
            aload 0 /* this */
            getfield com.google.common.collect.Maps$ValueDifferenceImpl.left:Ljava/lang/Object;
            aload 2 /* that */
            invokeinterface com.google.common.collect.MapDifference$ValueDifference.leftValue:()Ljava/lang/Object;
            invokestatic com.google.common.base.Objects.equal:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 5
         3: .line 719
            aload 0 /* this */
            getfield com.google.common.collect.Maps$ValueDifferenceImpl.right:Ljava/lang/Object;
            aload 2 /* that */
            invokeinterface com.google.common.collect.MapDifference$ValueDifference.rightValue:()Ljava/lang/Object;
            invokestatic com.google.common.base.Objects.equal:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 5
         4: .line 718
            iconst_1
            ireturn
      StackMap locals: com.google.common.collect.MapDifference$ValueDifference
      StackMap stack:
         5: iconst_0
            ireturn
        end local 2 // com.google.common.collect.MapDifference$ValueDifference that
         6: .line 721
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 1 // java.lang.Object object
        end local 0 // com.google.common.collect.Maps$ValueDifferenceImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Lcom/google/common/collect/Maps$ValueDifferenceImpl<TV;>;
            0    7     1  object  Ljava/lang/Object;
            2    6     2    that  Lcom/google/common/collect/MapDifference$ValueDifference<*>;
    RuntimeVisibleTypeAnnotations: 
      METHOD_FORMAL_PARAMETER
        org.checkerframework.checker.nullness.qual.Nullable()
    MethodParameters:
        Name  Flags
      object  

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // com.google.common.collect.Maps$ValueDifferenceImpl this
         0: .line 726
            iconst_2
            anewarray java.lang.Object
            dup
            iconst_0
            aload 0 /* this */
            getfield com.google.common.collect.Maps$ValueDifferenceImpl.left:Ljava/lang/Object;
            aastore
            dup
            iconst_1
            aload 0 /* this */
            getfield com.google.common.collect.Maps$ValueDifferenceImpl.right:Ljava/lang/Object;
            aastore
            invokestatic com.google.common.base.Objects.hashCode:([Ljava/lang/Object;)I
            ireturn
        end local 0 // com.google.common.collect.Maps$ValueDifferenceImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/Maps$ValueDifferenceImpl<TV;>;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.google.common.collect.Maps$ValueDifferenceImpl this
         0: .line 731
            new java.lang.StringBuilder
            dup
            ldc "("
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield com.google.common.collect.Maps$ValueDifferenceImpl.left:Ljava/lang/Object;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            ldc ", "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield com.google.common.collect.Maps$ValueDifferenceImpl.right:Ljava/lang/Object;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            ldc ")"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // com.google.common.collect.Maps$ValueDifferenceImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/Maps$ValueDifferenceImpl<TV;>;
}
Signature: <V:Ljava/lang/Object;>Ljava/lang/Object;Lcom/google/common/collect/MapDifference$ValueDifference<TV;>;
SourceFile: "Maps.java"
NestHost: com.google.common.collect.Maps
InnerClasses:
  public abstract ValueDifference = com.google.common.collect.MapDifference$ValueDifference of com.google.common.collect.MapDifference
  ValueDifferenceImpl = com.google.common.collect.Maps$ValueDifferenceImpl of com.google.common.collect.Maps