public class org.eclipse.jgit.api.ListNotesCommand extends org.eclipse.jgit.api.GitCommand<java.util.List<org.eclipse.jgit.notes.Note>>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.eclipse.jgit.api.ListNotesCommand
  super_class: org.eclipse.jgit.api.GitCommand
{
  private java.lang.String notesRef;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

  protected void <init>(org.eclipse.jgit.lib.Repository);
    descriptor: (Lorg/eclipse/jgit/lib/Repository;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jgit.api.ListNotesCommand this
        start local 1 // org.eclipse.jgit.lib.Repository repo
         0: .line 77
            aload 0 /* this */
            aload 1 /* repo */
            invokespecial org.eclipse.jgit.api.GitCommand.<init>:(Lorg/eclipse/jgit/lib/Repository;)V
         1: .line 68
            aload 0 /* this */
            ldc "refs/notes/commits"
            putfield org.eclipse.jgit.api.ListNotesCommand.notesRef:Ljava/lang/String;
         2: .line 78
            return
        end local 1 // org.eclipse.jgit.lib.Repository repo
        end local 0 // org.eclipse.jgit.api.ListNotesCommand this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/jgit/api/ListNotesCommand;
            0    3     1  repo  Lorg/eclipse/jgit/lib/Repository;
    MethodParameters:
      Name  Flags
      repo  

  public java.util.List<org.eclipse.jgit.notes.Note> call();
    descriptor: ()Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=8, args_size=1
        start local 0 // org.eclipse.jgit.api.ListNotesCommand this
         0: .line 83
            aload 0 /* this */
            invokevirtual org.eclipse.jgit.api.ListNotesCommand.checkCallable:()V
         1: .line 84
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            astore 1 /* notes */
        start local 1 // java.util.List notes
         2: .line 85
            invokestatic org.eclipse.jgit.notes.NoteMap.newEmptyMap:()Lorg/eclipse/jgit/notes/NoteMap;
            astore 2 /* map */
        start local 2 // org.eclipse.jgit.notes.NoteMap map
         3: .line 86
            aconst_null
            astore 3
            aconst_null
            astore 4
         4: new org.eclipse.jgit.revwalk.RevWalk
            dup
            aload 0 /* this */
            getfield org.eclipse.jgit.api.ListNotesCommand.repo:Lorg/eclipse/jgit/lib/Repository;
            invokespecial org.eclipse.jgit.revwalk.RevWalk.<init>:(Lorg/eclipse/jgit/lib/Repository;)V
            astore 5 /* walk */
        start local 5 // org.eclipse.jgit.revwalk.RevWalk walk
         5: .line 87
            aload 0 /* this */
            getfield org.eclipse.jgit.api.ListNotesCommand.repo:Lorg/eclipse/jgit/lib/Repository;
            aload 0 /* this */
            getfield org.eclipse.jgit.api.ListNotesCommand.notesRef:Ljava/lang/String;
            invokevirtual org.eclipse.jgit.lib.Repository.findRef:(Ljava/lang/String;)Lorg/eclipse/jgit/lib/Ref;
            astore 6 /* ref */
        start local 6 // org.eclipse.jgit.lib.Ref ref
         6: .line 89
            aload 6 /* ref */
            ifnull 9
         7: .line 90
            aload 5 /* walk */
            aload 6 /* ref */
            invokeinterface org.eclipse.jgit.lib.Ref.getObjectId:()Lorg/eclipse/jgit/lib/ObjectId;
            invokevirtual org.eclipse.jgit.revwalk.RevWalk.parseCommit:(Lorg/eclipse/jgit/lib/AnyObjectId;)Lorg/eclipse/jgit/revwalk/RevCommit;
            astore 7 /* notesCommit */
        start local 7 // org.eclipse.jgit.revwalk.RevCommit notesCommit
         8: .line 91
            aload 5 /* walk */
            invokevirtual org.eclipse.jgit.revwalk.RevWalk.getObjectReader:()Lorg/eclipse/jgit/lib/ObjectReader;
            aload 7 /* notesCommit */
            invokestatic org.eclipse.jgit.notes.NoteMap.read:(Lorg/eclipse/jgit/lib/ObjectReader;Lorg/eclipse/jgit/revwalk/RevCommit;)Lorg/eclipse/jgit/notes/NoteMap;
            astore 2 /* map */
        end local 7 // org.eclipse.jgit.revwalk.RevCommit notesCommit
         9: .line 94
      StackMap locals: org.eclipse.jgit.api.ListNotesCommand java.util.List org.eclipse.jgit.notes.NoteMap java.lang.Throwable java.lang.Throwable org.eclipse.jgit.revwalk.RevWalk org.eclipse.jgit.lib.Ref
      StackMap stack:
            aload 2 /* map */
            invokevirtual org.eclipse.jgit.notes.NoteMap.iterator:()Ljava/util/Iterator;
            astore 7 /* i */
        start local 7 // java.util.Iterator i
        10: .line 95
            goto 12
        11: .line 96
      StackMap locals: java.util.Iterator
      StackMap stack:
            aload 1 /* notes */
            aload 7 /* i */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.eclipse.jgit.notes.Note
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        12: .line 95
      StackMap locals:
      StackMap stack:
            aload 7 /* i */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 11
        end local 7 // java.util.Iterator i
        end local 6 // org.eclipse.jgit.lib.Ref ref
        13: .line 97
            aload 5 /* walk */
            ifnull 21
            aload 5 /* walk */
            invokevirtual org.eclipse.jgit.revwalk.RevWalk.close:()V
            goto 21
      StackMap locals: org.eclipse.jgit.api.ListNotesCommand java.util.List org.eclipse.jgit.notes.NoteMap java.lang.Throwable java.lang.Throwable org.eclipse.jgit.revwalk.RevWalk
      StackMap stack: java.lang.Throwable
        14: astore 3
            aload 5 /* walk */
            ifnull 15
            aload 5 /* walk */
            invokevirtual org.eclipse.jgit.revwalk.RevWalk.close:()V
        end local 5 // org.eclipse.jgit.revwalk.RevWalk walk
      StackMap locals:
      StackMap stack:
        15: aload 3
            athrow
      StackMap locals:
      StackMap stack: java.lang.Throwable
        16: astore 4
            aload 3
            ifnonnull 17
            aload 4
            astore 3
            goto 18
      StackMap locals:
      StackMap stack:
        17: aload 3
            aload 4
            if_acmpeq 18
            aload 3
            aload 4
            invokevirtual java.lang.Throwable.addSuppressed:(Ljava/lang/Throwable;)V
      StackMap locals:
      StackMap stack:
        18: aload 3
            athrow
      StackMap locals: org.eclipse.jgit.api.ListNotesCommand java.util.List org.eclipse.jgit.notes.NoteMap
      StackMap stack: java.io.IOException
        19: astore 3 /* e */
        start local 3 // java.io.IOException e
        20: .line 98
            new org.eclipse.jgit.api.errors.JGitInternalException
            dup
            aload 3 /* e */
            invokevirtual java.io.IOException.getMessage:()Ljava/lang/String;
            aload 3 /* e */
            invokespecial org.eclipse.jgit.api.errors.JGitInternalException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 3 // java.io.IOException e
        21: .line 101
      StackMap locals:
      StackMap stack:
            aload 1 /* notes */
            areturn
        end local 2 // org.eclipse.jgit.notes.NoteMap map
        end local 1 // java.util.List notes
        end local 0 // org.eclipse.jgit.api.ListNotesCommand this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   22     0         this  Lorg/eclipse/jgit/api/ListNotesCommand;
            2   22     1        notes  Ljava/util/List<Lorg/eclipse/jgit/notes/Note;>;
            3   22     2          map  Lorg/eclipse/jgit/notes/NoteMap;
            5   15     5         walk  Lorg/eclipse/jgit/revwalk/RevWalk;
            6   13     6          ref  Lorg/eclipse/jgit/lib/Ref;
            8    9     7  notesCommit  Lorg/eclipse/jgit/revwalk/RevCommit;
           10   13     7            i  Ljava/util/Iterator<Lorg/eclipse/jgit/notes/Note;>;
           20   21     3            e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           5    13      14  any
           4    16      16  any
           3    19      19  Class java.io.IOException
    Exceptions:
      throws org.eclipse.jgit.api.errors.GitAPIException
    Signature: ()Ljava/util/List<Lorg/eclipse/jgit/notes/Note;>;

  public org.eclipse.jgit.api.ListNotesCommand setNotesRef(java.lang.String);
    descriptor: (Ljava/lang/String;)Lorg/eclipse/jgit/api/ListNotesCommand;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jgit.api.ListNotesCommand this
        start local 1 // java.lang.String notesRef
         0: .line 116
            aload 0 /* this */
            invokevirtual org.eclipse.jgit.api.ListNotesCommand.checkCallable:()V
         1: .line 117
            aload 0 /* this */
            aload 1 /* notesRef */
            putfield org.eclipse.jgit.api.ListNotesCommand.notesRef:Ljava/lang/String;
         2: .line 118
            aload 0 /* this */
            areturn
        end local 1 // java.lang.String notesRef
        end local 0 // org.eclipse.jgit.api.ListNotesCommand this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lorg/eclipse/jgit/api/ListNotesCommand;
            0    3     1  notesRef  Ljava/lang/String;
    MethodParameters:
          Name  Flags
      notesRef  

  public java.lang.Object call();
    descriptor: ()Ljava/lang/Object;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.eclipse.jgit.api.ListNotesCommand.call:()Ljava/util/List;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws org.eclipse.jgit.api.errors.GitAPIException
}
Signature: Lorg/eclipse/jgit/api/GitCommand<Ljava/util/List<Lorg/eclipse/jgit/notes/Note;>;>;
SourceFile: "ListNotesCommand.java"