public final class org.eclipse.aether.util.graph.selector.ExclusionDependencySelector implements org.eclipse.aether.collection.DependencySelector
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: org.eclipse.aether.util.graph.selector.ExclusionDependencySelector
  super_class: java.lang.Object
{
  private final org.eclipse.aether.graph.Exclusion[] exclusions;
    descriptor: [Lorg/eclipse/aether/graph/Exclusion;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private int hashCode;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.aether.util.graph.selector.ExclusionDependencySelector this
         0: .line 50
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 52
            aload 0 /* this */
            iconst_0
            anewarray org.eclipse.aether.graph.Exclusion
            putfield org.eclipse.aether.util.graph.selector.ExclusionDependencySelector.exclusions:[Lorg/eclipse/aether/graph/Exclusion;
         2: .line 53
            return
        end local 0 // org.eclipse.aether.util.graph.selector.ExclusionDependencySelector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/aether/util/graph/selector/ExclusionDependencySelector;

  public void <init>(java.util.Collection<org.eclipse.aether.graph.Exclusion>);
    descriptor: (Ljava/util/Collection;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.aether.util.graph.selector.ExclusionDependencySelector this
        start local 1 // java.util.Collection exclusions
         0: .line 60
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 62
            aload 1 /* exclusions */
            ifnull 6
            aload 1 /* exclusions */
            invokeinterface java.util.Collection.isEmpty:()Z
            ifne 6
         2: .line 64
            new java.util.TreeSet
            dup
            getstatic org.eclipse.aether.util.graph.selector.ExclusionDependencySelector$ExclusionComparator.INSTANCE:Lorg/eclipse/aether/util/graph/selector/ExclusionDependencySelector$ExclusionComparator;
            invokespecial java.util.TreeSet.<init>:(Ljava/util/Comparator;)V
            astore 2 /* sorted */
        start local 2 // java.util.TreeSet sorted
         3: .line 65
            aload 2 /* sorted */
            aload 1 /* exclusions */
            invokevirtual java.util.TreeSet.addAll:(Ljava/util/Collection;)Z
            pop
         4: .line 66
            aload 0 /* this */
            aload 2 /* sorted */
            aload 2 /* sorted */
            invokevirtual java.util.TreeSet.size:()I
            anewarray org.eclipse.aether.graph.Exclusion
            invokevirtual java.util.TreeSet.toArray:([Ljava/lang/Object;)[Ljava/lang/Object;
            checkcast org.eclipse.aether.graph.Exclusion[]
            putfield org.eclipse.aether.util.graph.selector.ExclusionDependencySelector.exclusions:[Lorg/eclipse/aether/graph/Exclusion;
        end local 2 // java.util.TreeSet sorted
         5: .line 67
            goto 7
         6: .line 70
      StackMap locals: org.eclipse.aether.util.graph.selector.ExclusionDependencySelector java.util.Collection
      StackMap stack:
            aload 0 /* this */
            iconst_0
            anewarray org.eclipse.aether.graph.Exclusion
            putfield org.eclipse.aether.util.graph.selector.ExclusionDependencySelector.exclusions:[Lorg/eclipse/aether/graph/Exclusion;
         7: .line 72
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.util.Collection exclusions
        end local 0 // org.eclipse.aether.util.graph.selector.ExclusionDependencySelector this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    8     0        this  Lorg/eclipse/aether/util/graph/selector/ExclusionDependencySelector;
            0    8     1  exclusions  Ljava/util/Collection<Lorg/eclipse/aether/graph/Exclusion;>;
            3    5     2      sorted  Ljava/util/TreeSet<Lorg/eclipse/aether/graph/Exclusion;>;
    Signature: (Ljava/util/Collection<Lorg/eclipse/aether/graph/Exclusion;>;)V
    MethodParameters:
            Name  Flags
      exclusions  

  private void <init>(org.eclipse.aether.graph.Exclusion[]);
    descriptor: ([Lorg/eclipse/aether/graph/Exclusion;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.aether.util.graph.selector.ExclusionDependencySelector this
        start local 1 // org.eclipse.aether.graph.Exclusion[] exclusions
         0: .line 74
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 76
            aload 0 /* this */
            aload 1 /* exclusions */
            putfield org.eclipse.aether.util.graph.selector.ExclusionDependencySelector.exclusions:[Lorg/eclipse/aether/graph/Exclusion;
         2: .line 77
            return
        end local 1 // org.eclipse.aether.graph.Exclusion[] exclusions
        end local 0 // org.eclipse.aether.util.graph.selector.ExclusionDependencySelector this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    3     0        this  Lorg/eclipse/aether/util/graph/selector/ExclusionDependencySelector;
            0    3     1  exclusions  [Lorg/eclipse/aether/graph/Exclusion;
    MethodParameters:
            Name  Flags
      exclusions  

  public boolean selectDependency(org.eclipse.aether.graph.Dependency);
    descriptor: (Lorg/eclipse/aether/graph/Dependency;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=7, args_size=2
        start local 0 // org.eclipse.aether.util.graph.selector.ExclusionDependencySelector this
        start local 1 // org.eclipse.aether.graph.Dependency dependency
         0: .line 81
            aload 1 /* dependency */
            invokevirtual org.eclipse.aether.graph.Dependency.getArtifact:()Lorg/eclipse/aether/artifact/Artifact;
            astore 2 /* artifact */
        start local 2 // org.eclipse.aether.artifact.Artifact artifact
         1: .line 82
            aload 0 /* this */
            getfield org.eclipse.aether.util.graph.selector.ExclusionDependencySelector.exclusions:[Lorg/eclipse/aether/graph/Exclusion;
            dup
            astore 6
            arraylength
            istore 5
            iconst_0
            istore 4
            goto 6
      StackMap locals: org.eclipse.aether.util.graph.selector.ExclusionDependencySelector org.eclipse.aether.graph.Dependency org.eclipse.aether.artifact.Artifact top int int org.eclipse.aether.graph.Exclusion[]
      StackMap stack:
         2: aload 6
            iload 4
            aaload
            astore 3 /* exclusion */
        start local 3 // org.eclipse.aether.graph.Exclusion exclusion
         3: .line 84
            aload 0 /* this */
            aload 3 /* exclusion */
            aload 2 /* artifact */
            invokevirtual org.eclipse.aether.util.graph.selector.ExclusionDependencySelector.matches:(Lorg/eclipse/aether/graph/Exclusion;Lorg/eclipse/aether/artifact/Artifact;)Z
            ifeq 5
         4: .line 86
            iconst_0
            ireturn
        end local 3 // org.eclipse.aether.graph.Exclusion exclusion
         5: .line 82
      StackMap locals:
      StackMap stack:
            iinc 4 1
      StackMap locals:
      StackMap stack:
         6: iload 4
            iload 5
            if_icmplt 2
         7: .line 89
            iconst_1
            ireturn
        end local 2 // org.eclipse.aether.artifact.Artifact artifact
        end local 1 // org.eclipse.aether.graph.Dependency dependency
        end local 0 // org.eclipse.aether.util.graph.selector.ExclusionDependencySelector this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    8     0        this  Lorg/eclipse/aether/util/graph/selector/ExclusionDependencySelector;
            0    8     1  dependency  Lorg/eclipse/aether/graph/Dependency;
            1    8     2    artifact  Lorg/eclipse/aether/artifact/Artifact;
            3    5     3   exclusion  Lorg/eclipse/aether/graph/Exclusion;
    MethodParameters:
            Name  Flags
      dependency  

  private boolean matches(org.eclipse.aether.graph.Exclusion, org.eclipse.aether.artifact.Artifact);
    descriptor: (Lorg/eclipse/aether/graph/Exclusion;Lorg/eclipse/aether/artifact/Artifact;)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.aether.util.graph.selector.ExclusionDependencySelector this
        start local 1 // org.eclipse.aether.graph.Exclusion exclusion
        start local 2 // org.eclipse.aether.artifact.Artifact artifact
         0: .line 94
            aload 0 /* this */
            aload 1 /* exclusion */
            invokevirtual org.eclipse.aether.graph.Exclusion.getArtifactId:()Ljava/lang/String;
            aload 2 /* artifact */
            invokeinterface org.eclipse.aether.artifact.Artifact.getArtifactId:()Ljava/lang/String;
            invokevirtual org.eclipse.aether.util.graph.selector.ExclusionDependencySelector.matches:(Ljava/lang/String;Ljava/lang/String;)Z
            ifne 2
         1: .line 96
            iconst_0
            ireturn
         2: .line 98
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* exclusion */
            invokevirtual org.eclipse.aether.graph.Exclusion.getGroupId:()Ljava/lang/String;
            aload 2 /* artifact */
            invokeinterface org.eclipse.aether.artifact.Artifact.getGroupId:()Ljava/lang/String;
            invokevirtual org.eclipse.aether.util.graph.selector.ExclusionDependencySelector.matches:(Ljava/lang/String;Ljava/lang/String;)Z
            ifne 4
         3: .line 100
            iconst_0
            ireturn
         4: .line 102
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* exclusion */
            invokevirtual org.eclipse.aether.graph.Exclusion.getExtension:()Ljava/lang/String;
            aload 2 /* artifact */
            invokeinterface org.eclipse.aether.artifact.Artifact.getExtension:()Ljava/lang/String;
            invokevirtual org.eclipse.aether.util.graph.selector.ExclusionDependencySelector.matches:(Ljava/lang/String;Ljava/lang/String;)Z
            ifne 6
         5: .line 104
            iconst_0
            ireturn
         6: .line 106
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* exclusion */
            invokevirtual org.eclipse.aether.graph.Exclusion.getClassifier:()Ljava/lang/String;
            aload 2 /* artifact */
            invokeinterface org.eclipse.aether.artifact.Artifact.getClassifier:()Ljava/lang/String;
            invokevirtual org.eclipse.aether.util.graph.selector.ExclusionDependencySelector.matches:(Ljava/lang/String;Ljava/lang/String;)Z
            ifne 8
         7: .line 108
            iconst_0
            ireturn
         8: .line 110
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 2 // org.eclipse.aether.artifact.Artifact artifact
        end local 1 // org.eclipse.aether.graph.Exclusion exclusion
        end local 0 // org.eclipse.aether.util.graph.selector.ExclusionDependencySelector this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    9     0       this  Lorg/eclipse/aether/util/graph/selector/ExclusionDependencySelector;
            0    9     1  exclusion  Lorg/eclipse/aether/graph/Exclusion;
            0    9     2   artifact  Lorg/eclipse/aether/artifact/Artifact;
    MethodParameters:
           Name  Flags
      exclusion  
      artifact   

  private boolean matches(java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.eclipse.aether.util.graph.selector.ExclusionDependencySelector this
        start local 1 // java.lang.String pattern
        start local 2 // java.lang.String value
         0: .line 115
            ldc "*"
            aload 1 /* pattern */
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifne 1
            aload 1 /* pattern */
            aload 2 /* value */
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifne 1
            iconst_0
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_1
            ireturn
        end local 2 // java.lang.String value
        end local 1 // java.lang.String pattern
        end local 0 // org.eclipse.aether.util.graph.selector.ExclusionDependencySelector this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/eclipse/aether/util/graph/selector/ExclusionDependencySelector;
            0    2     1  pattern  Ljava/lang/String;
            0    2     2    value  Ljava/lang/String;
    MethodParameters:
         Name  Flags
      pattern  
      value    

  public org.eclipse.aether.collection.DependencySelector deriveChildSelector(org.eclipse.aether.collection.DependencyCollectionContext);
    descriptor: (Lorg/eclipse/aether/collection/DependencyCollectionContext;)Lorg/eclipse/aether/collection/DependencySelector;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=10, args_size=2
        start local 0 // org.eclipse.aether.util.graph.selector.ExclusionDependencySelector this
        start local 1 // org.eclipse.aether.collection.DependencyCollectionContext context
         0: .line 120
            aload 1 /* context */
            invokeinterface org.eclipse.aether.collection.DependencyCollectionContext.getDependency:()Lorg/eclipse/aether/graph/Dependency;
            astore 2 /* dependency */
        start local 2 // org.eclipse.aether.graph.Dependency dependency
         1: .line 121
            aload 2 /* dependency */
            ifnull 2
            aload 2 /* dependency */
            invokevirtual org.eclipse.aether.graph.Dependency.getExclusions:()Ljava/util/Collection;
            goto 3
      StackMap locals: org.eclipse.aether.graph.Dependency
      StackMap stack:
         2: aconst_null
      StackMap locals:
      StackMap stack: java.util.Collection
         3: astore 3 /* exclusions */
        start local 3 // java.util.Collection exclusions
         4: .line 122
            aload 3 /* exclusions */
            ifnull 5
            aload 3 /* exclusions */
            invokeinterface java.util.Collection.isEmpty:()Z
            ifeq 6
         5: .line 124
      StackMap locals: java.util.Collection
      StackMap stack:
            aload 0 /* this */
            areturn
         6: .line 127
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.aether.util.graph.selector.ExclusionDependencySelector.exclusions:[Lorg/eclipse/aether/graph/Exclusion;
            astore 4 /* merged */
        start local 4 // org.eclipse.aether.graph.Exclusion[] merged
         7: .line 128
            aload 4 /* merged */
            arraylength
            istore 5 /* count */
        start local 5 // int count
         8: .line 129
            aload 3 /* exclusions */
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            astore 7
            goto 23
      StackMap locals: org.eclipse.aether.util.graph.selector.ExclusionDependencySelector org.eclipse.aether.collection.DependencyCollectionContext org.eclipse.aether.graph.Dependency java.util.Collection org.eclipse.aether.graph.Exclusion[] int top java.util.Iterator
      StackMap stack:
         9: aload 7
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.eclipse.aether.graph.Exclusion
            astore 6 /* exclusion */
        start local 6 // org.eclipse.aether.graph.Exclusion exclusion
        10: .line 131
            aload 4 /* merged */
            aload 6 /* exclusion */
            getstatic org.eclipse.aether.util.graph.selector.ExclusionDependencySelector$ExclusionComparator.INSTANCE:Lorg/eclipse/aether/util/graph/selector/ExclusionDependencySelector$ExclusionComparator;
            invokestatic java.util.Arrays.binarySearch:([Ljava/lang/Object;Ljava/lang/Object;Ljava/util/Comparator;)I
            istore 8 /* index */
        start local 8 // int index
        11: .line 132
            iload 8 /* index */
            ifge 23
        12: .line 134
            iload 8 /* index */
            iconst_1
            iadd
            ineg
            istore 8 /* index */
        13: .line 135
            iload 5 /* count */
            aload 4 /* merged */
            arraylength
            if_icmplt 20
        14: .line 137
            aload 4 /* merged */
            arraylength
            aload 3 /* exclusions */
            invokeinterface java.util.Collection.size:()I
            iadd
            anewarray org.eclipse.aether.graph.Exclusion
            astore 9 /* tmp */
        start local 9 // org.eclipse.aether.graph.Exclusion[] tmp
        15: .line 138
            aload 4 /* merged */
            iconst_0
            aload 9 /* tmp */
            iconst_0
            iload 8 /* index */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        16: .line 139
            aload 9 /* tmp */
            iload 8 /* index */
            aload 6 /* exclusion */
            aastore
        17: .line 140
            aload 4 /* merged */
            iload 8 /* index */
            aload 9 /* tmp */
            iload 8 /* index */
            iconst_1
            iadd
            iload 5 /* count */
            iload 8 /* index */
            isub
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        18: .line 141
            aload 9 /* tmp */
            astore 4 /* merged */
        end local 9 // org.eclipse.aether.graph.Exclusion[] tmp
        19: .line 142
            goto 22
        20: .line 145
      StackMap locals: org.eclipse.aether.util.graph.selector.ExclusionDependencySelector org.eclipse.aether.collection.DependencyCollectionContext org.eclipse.aether.graph.Dependency java.util.Collection org.eclipse.aether.graph.Exclusion[] int org.eclipse.aether.graph.Exclusion java.util.Iterator int
      StackMap stack:
            aload 4 /* merged */
            iload 8 /* index */
            aload 4 /* merged */
            iload 8 /* index */
            iconst_1
            iadd
            iload 5 /* count */
            iload 8 /* index */
            isub
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        21: .line 146
            aload 4 /* merged */
            iload 8 /* index */
            aload 6 /* exclusion */
            aastore
        22: .line 148
      StackMap locals:
      StackMap stack:
            iinc 5 /* count */ 1
        end local 8 // int index
        end local 6 // org.eclipse.aether.graph.Exclusion exclusion
        23: .line 129
      StackMap locals: org.eclipse.aether.util.graph.selector.ExclusionDependencySelector org.eclipse.aether.collection.DependencyCollectionContext org.eclipse.aether.graph.Dependency java.util.Collection org.eclipse.aether.graph.Exclusion[] int top java.util.Iterator
      StackMap stack:
            aload 7
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 9
        24: .line 151
            aload 4 /* merged */
            aload 0 /* this */
            getfield org.eclipse.aether.util.graph.selector.ExclusionDependencySelector.exclusions:[Lorg/eclipse/aether/graph/Exclusion;
            if_acmpne 26
        25: .line 153
            aload 0 /* this */
            areturn
        26: .line 155
      StackMap locals: org.eclipse.aether.util.graph.selector.ExclusionDependencySelector org.eclipse.aether.collection.DependencyCollectionContext org.eclipse.aether.graph.Dependency java.util.Collection org.eclipse.aether.graph.Exclusion[] int
      StackMap stack:
            aload 4 /* merged */
            arraylength
            iload 5 /* count */
            if_icmpeq 30
        27: .line 157
            iload 5 /* count */
            anewarray org.eclipse.aether.graph.Exclusion
            astore 6 /* tmp */
        start local 6 // org.eclipse.aether.graph.Exclusion[] tmp
        28: .line 158
            aload 4 /* merged */
            iconst_0
            aload 6 /* tmp */
            iconst_0
            iload 5 /* count */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        29: .line 159
            aload 6 /* tmp */
            astore 4 /* merged */
        end local 6 // org.eclipse.aether.graph.Exclusion[] tmp
        30: .line 162
      StackMap locals:
      StackMap stack:
            new org.eclipse.aether.util.graph.selector.ExclusionDependencySelector
            dup
            aload 4 /* merged */
            invokespecial org.eclipse.aether.util.graph.selector.ExclusionDependencySelector.<init>:([Lorg/eclipse/aether/graph/Exclusion;)V
            areturn
        end local 5 // int count
        end local 4 // org.eclipse.aether.graph.Exclusion[] merged
        end local 3 // java.util.Collection exclusions
        end local 2 // org.eclipse.aether.graph.Dependency dependency
        end local 1 // org.eclipse.aether.collection.DependencyCollectionContext context
        end local 0 // org.eclipse.aether.util.graph.selector.ExclusionDependencySelector this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   31     0        this  Lorg/eclipse/aether/util/graph/selector/ExclusionDependencySelector;
            0   31     1     context  Lorg/eclipse/aether/collection/DependencyCollectionContext;
            1   31     2  dependency  Lorg/eclipse/aether/graph/Dependency;
            4   31     3  exclusions  Ljava/util/Collection<Lorg/eclipse/aether/graph/Exclusion;>;
            7   31     4      merged  [Lorg/eclipse/aether/graph/Exclusion;
            8   31     5       count  I
           10   23     6   exclusion  Lorg/eclipse/aether/graph/Exclusion;
           11   23     8       index  I
           15   19     9         tmp  [Lorg/eclipse/aether/graph/Exclusion;
           28   30     6         tmp  [Lorg/eclipse/aether/graph/Exclusion;
    MethodParameters:
         Name  Flags
      context  

  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 // org.eclipse.aether.util.graph.selector.ExclusionDependencySelector this
        start local 1 // java.lang.Object obj
         0: .line 168
            aload 0 /* this */
            aload 1 /* obj */
            if_acmpne 2
         1: .line 170
            iconst_1
            ireturn
         2: .line 172
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            ifnull 3
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            aload 1 /* obj */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifne 4
         3: .line 174
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
         4: .line 177
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            checkcast org.eclipse.aether.util.graph.selector.ExclusionDependencySelector
            astore 2 /* that */
        start local 2 // org.eclipse.aether.util.graph.selector.ExclusionDependencySelector that
         5: .line 178
            aload 0 /* this */
            getfield org.eclipse.aether.util.graph.selector.ExclusionDependencySelector.exclusions:[Lorg/eclipse/aether/graph/Exclusion;
            aload 2 /* that */
            getfield org.eclipse.aether.util.graph.selector.ExclusionDependencySelector.exclusions:[Lorg/eclipse/aether/graph/Exclusion;
            invokestatic java.util.Arrays.equals:([Ljava/lang/Object;[Ljava/lang/Object;)Z
            ireturn
        end local 2 // org.eclipse.aether.util.graph.selector.ExclusionDependencySelector that
        end local 1 // java.lang.Object obj
        end local 0 // org.eclipse.aether.util.graph.selector.ExclusionDependencySelector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/eclipse/aether/util/graph/selector/ExclusionDependencySelector;
            0    6     1   obj  Ljava/lang/Object;
            5    6     2  that  Lorg/eclipse/aether/util/graph/selector/ExclusionDependencySelector;
    MethodParameters:
      Name  Flags
      obj   

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.eclipse.aether.util.graph.selector.ExclusionDependencySelector this
         0: .line 184
            aload 0 /* this */
            getfield org.eclipse.aether.util.graph.selector.ExclusionDependencySelector.hashCode:I
            ifne 4
         1: .line 186
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Object.hashCode:()I
            istore 1 /* hash */
        start local 1 // int hash
         2: .line 187
            iload 1 /* hash */
            bipush 31
            imul
            aload 0 /* this */
            getfield org.eclipse.aether.util.graph.selector.ExclusionDependencySelector.exclusions:[Lorg/eclipse/aether/graph/Exclusion;
            invokestatic java.util.Arrays.hashCode:([Ljava/lang/Object;)I
            iadd
            istore 1 /* hash */
         3: .line 188
            aload 0 /* this */
            iload 1 /* hash */
            putfield org.eclipse.aether.util.graph.selector.ExclusionDependencySelector.hashCode:I
        end local 1 // int hash
         4: .line 190
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.aether.util.graph.selector.ExclusionDependencySelector.hashCode:I
            ireturn
        end local 0 // org.eclipse.aether.util.graph.selector.ExclusionDependencySelector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/eclipse/aether/util/graph/selector/ExclusionDependencySelector;
            2    4     1  hash  I
}
SourceFile: "ExclusionDependencySelector.java"
NestMembers:
  org.eclipse.aether.util.graph.selector.ExclusionDependencySelector$ExclusionComparator
InnerClasses:
  private ExclusionComparator = org.eclipse.aether.util.graph.selector.ExclusionDependencySelector$ExclusionComparator of org.eclipse.aether.util.graph.selector.ExclusionDependencySelector