abstract class org.eclipse.jgit.dircache.BaseDirCacheEditor
  minor version: 0
  major version: 59
  flags: flags: (0x0420) ACC_SUPER, ACC_ABSTRACT
  this_class: org.eclipse.jgit.dircache.BaseDirCacheEditor
  super_class: java.lang.Object
{
  protected org.eclipse.jgit.dircache.DirCache cache;
    descriptor: Lorg/eclipse/jgit/dircache/DirCache;
    flags: (0x0004) ACC_PROTECTED

  protected org.eclipse.jgit.dircache.DirCacheEntry[] entries;
    descriptor: [Lorg/eclipse/jgit/dircache/DirCacheEntry;
    flags: (0x0004) ACC_PROTECTED

  protected int entryCnt;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  protected void <init>(org.eclipse.jgit.dircache.DirCache, int);
    descriptor: (Lorg/eclipse/jgit/dircache/DirCache;I)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.eclipse.jgit.dircache.BaseDirCacheEditor this
        start local 1 // org.eclipse.jgit.dircache.DirCache dc
        start local 2 // int ecnt
         0: .line 88
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 89
            aload 0 /* this */
            aload 1 /* dc */
            putfield org.eclipse.jgit.dircache.BaseDirCacheEditor.cache:Lorg/eclipse/jgit/dircache/DirCache;
         2: .line 90
            aload 0 /* this */
            iload 2 /* ecnt */
            anewarray org.eclipse.jgit.dircache.DirCacheEntry
            putfield org.eclipse.jgit.dircache.BaseDirCacheEditor.entries:[Lorg/eclipse/jgit/dircache/DirCacheEntry;
         3: .line 91
            return
        end local 2 // int ecnt
        end local 1 // org.eclipse.jgit.dircache.DirCache dc
        end local 0 // org.eclipse.jgit.dircache.BaseDirCacheEditor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/eclipse/jgit/dircache/BaseDirCacheEditor;
            0    4     1    dc  Lorg/eclipse/jgit/dircache/DirCache;
            0    4     2  ecnt  I
    MethodParameters:
      Name  Flags
      dc    
      ecnt  

  public org.eclipse.jgit.dircache.DirCache getDirCache();
    descriptor: ()Lorg/eclipse/jgit/dircache/DirCache;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jgit.dircache.BaseDirCacheEditor this
         0: .line 99
            aload 0 /* this */
            getfield org.eclipse.jgit.dircache.BaseDirCacheEditor.cache:Lorg/eclipse/jgit/dircache/DirCache;
            areturn
        end local 0 // org.eclipse.jgit.dircache.BaseDirCacheEditor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jgit/dircache/BaseDirCacheEditor;

  protected void fastAdd(org.eclipse.jgit.dircache.DirCacheEntry);
    descriptor: (Lorg/eclipse/jgit/dircache/DirCacheEntry;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // org.eclipse.jgit.dircache.BaseDirCacheEditor this
        start local 1 // org.eclipse.jgit.dircache.DirCacheEntry newEntry
         0: .line 115
            aload 0 /* this */
            getfield org.eclipse.jgit.dircache.BaseDirCacheEditor.entries:[Lorg/eclipse/jgit/dircache/DirCacheEntry;
            arraylength
            aload 0 /* this */
            getfield org.eclipse.jgit.dircache.BaseDirCacheEditor.entryCnt:I
            if_icmpne 4
         1: .line 116
            aload 0 /* this */
            getfield org.eclipse.jgit.dircache.BaseDirCacheEditor.entryCnt:I
            bipush 16
            iadd
            iconst_3
            imul
            iconst_2
            idiv
            anewarray org.eclipse.jgit.dircache.DirCacheEntry
            astore 2 /* n */
        start local 2 // org.eclipse.jgit.dircache.DirCacheEntry[] n
         2: .line 117
            aload 0 /* this */
            getfield org.eclipse.jgit.dircache.BaseDirCacheEditor.entries:[Lorg/eclipse/jgit/dircache/DirCacheEntry;
            iconst_0
            aload 2 /* n */
            iconst_0
            aload 0 /* this */
            getfield org.eclipse.jgit.dircache.BaseDirCacheEditor.entryCnt:I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         3: .line 118
            aload 0 /* this */
            aload 2 /* n */
            putfield org.eclipse.jgit.dircache.BaseDirCacheEditor.entries:[Lorg/eclipse/jgit/dircache/DirCacheEntry;
        end local 2 // org.eclipse.jgit.dircache.DirCacheEntry[] n
         4: .line 120
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jgit.dircache.BaseDirCacheEditor.entries:[Lorg/eclipse/jgit/dircache/DirCacheEntry;
            aload 0 /* this */
            dup
            getfield org.eclipse.jgit.dircache.BaseDirCacheEditor.entryCnt:I
            dup_x1
            iconst_1
            iadd
            putfield org.eclipse.jgit.dircache.BaseDirCacheEditor.entryCnt:I
            aload 1 /* newEntry */
            aastore
         5: .line 121
            return
        end local 1 // org.eclipse.jgit.dircache.DirCacheEntry newEntry
        end local 0 // org.eclipse.jgit.dircache.BaseDirCacheEditor this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    6     0      this  Lorg/eclipse/jgit/dircache/BaseDirCacheEditor;
            0    6     1  newEntry  Lorg/eclipse/jgit/dircache/DirCacheEntry;
            2    4     2         n  [Lorg/eclipse/jgit/dircache/DirCacheEntry;
    MethodParameters:
          Name  Flags
      newEntry  

  protected void fastKeep(int, int);
    descriptor: (II)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=6, args_size=3
        start local 0 // org.eclipse.jgit.dircache.BaseDirCacheEditor this
        start local 1 // int pos
        start local 2 // int cnt
         0: .line 144
            aload 0 /* this */
            getfield org.eclipse.jgit.dircache.BaseDirCacheEditor.entryCnt:I
            iload 2 /* cnt */
            iadd
            aload 0 /* this */
            getfield org.eclipse.jgit.dircache.BaseDirCacheEditor.entries:[Lorg/eclipse/jgit/dircache/DirCacheEntry;
            arraylength
            if_icmple 6
         1: .line 145
            aload 0 /* this */
            getfield org.eclipse.jgit.dircache.BaseDirCacheEditor.entryCnt:I
            bipush 16
            iadd
            iconst_3
            imul
            iconst_2
            idiv
            istore 3 /* m1 */
        start local 3 // int m1
         2: .line 146
            aload 0 /* this */
            getfield org.eclipse.jgit.dircache.BaseDirCacheEditor.entryCnt:I
            iload 2 /* cnt */
            iadd
            istore 4 /* m2 */
        start local 4 // int m2
         3: .line 147
            iload 3 /* m1 */
            iload 4 /* m2 */
            invokestatic java.lang.Math.max:(II)I
            anewarray org.eclipse.jgit.dircache.DirCacheEntry
            astore 5 /* n */
        start local 5 // org.eclipse.jgit.dircache.DirCacheEntry[] n
         4: .line 148
            aload 0 /* this */
            getfield org.eclipse.jgit.dircache.BaseDirCacheEditor.entries:[Lorg/eclipse/jgit/dircache/DirCacheEntry;
            iconst_0
            aload 5 /* n */
            iconst_0
            aload 0 /* this */
            getfield org.eclipse.jgit.dircache.BaseDirCacheEditor.entryCnt:I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         5: .line 149
            aload 0 /* this */
            aload 5 /* n */
            putfield org.eclipse.jgit.dircache.BaseDirCacheEditor.entries:[Lorg/eclipse/jgit/dircache/DirCacheEntry;
        end local 5 // org.eclipse.jgit.dircache.DirCacheEntry[] n
        end local 4 // int m2
        end local 3 // int m1
         6: .line 152
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jgit.dircache.BaseDirCacheEditor.cache:Lorg/eclipse/jgit/dircache/DirCache;
            iload 1 /* pos */
            aload 0 /* this */
            getfield org.eclipse.jgit.dircache.BaseDirCacheEditor.entries:[Lorg/eclipse/jgit/dircache/DirCacheEntry;
            aload 0 /* this */
            getfield org.eclipse.jgit.dircache.BaseDirCacheEditor.entryCnt:I
            iload 2 /* cnt */
            invokevirtual org.eclipse.jgit.dircache.DirCache.toArray:(I[Lorg/eclipse/jgit/dircache/DirCacheEntry;II)V
         7: .line 153
            aload 0 /* this */
            dup
            getfield org.eclipse.jgit.dircache.BaseDirCacheEditor.entryCnt:I
            iload 2 /* cnt */
            iadd
            putfield org.eclipse.jgit.dircache.BaseDirCacheEditor.entryCnt:I
         8: .line 154
            return
        end local 2 // int cnt
        end local 1 // int pos
        end local 0 // org.eclipse.jgit.dircache.BaseDirCacheEditor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lorg/eclipse/jgit/dircache/BaseDirCacheEditor;
            0    9     1   pos  I
            0    9     2   cnt  I
            2    6     3    m1  I
            3    6     4    m2  I
            4    6     5     n  [Lorg/eclipse/jgit/dircache/DirCacheEntry;
    MethodParameters:
      Name  Flags
      pos   
      cnt   

  public abstract void finish();
    descriptor: ()V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  protected void replace();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // org.eclipse.jgit.dircache.BaseDirCacheEditor this
         0: .line 179
            aload 0 /* this */
            invokevirtual org.eclipse.jgit.dircache.BaseDirCacheEditor.checkNameConflicts:()V
         1: .line 180
            aload 0 /* this */
            getfield org.eclipse.jgit.dircache.BaseDirCacheEditor.entryCnt:I
            aload 0 /* this */
            getfield org.eclipse.jgit.dircache.BaseDirCacheEditor.entries:[Lorg/eclipse/jgit/dircache/DirCacheEntry;
            arraylength
            iconst_2
            idiv
            if_icmpge 5
         2: .line 181
            aload 0 /* this */
            getfield org.eclipse.jgit.dircache.BaseDirCacheEditor.entryCnt:I
            anewarray org.eclipse.jgit.dircache.DirCacheEntry
            astore 1 /* n */
        start local 1 // org.eclipse.jgit.dircache.DirCacheEntry[] n
         3: .line 182
            aload 0 /* this */
            getfield org.eclipse.jgit.dircache.BaseDirCacheEditor.entries:[Lorg/eclipse/jgit/dircache/DirCacheEntry;
            iconst_0
            aload 1 /* n */
            iconst_0
            aload 0 /* this */
            getfield org.eclipse.jgit.dircache.BaseDirCacheEditor.entryCnt:I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         4: .line 183
            aload 0 /* this */
            aload 1 /* n */
            putfield org.eclipse.jgit.dircache.BaseDirCacheEditor.entries:[Lorg/eclipse/jgit/dircache/DirCacheEntry;
        end local 1 // org.eclipse.jgit.dircache.DirCacheEntry[] n
         5: .line 185
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jgit.dircache.BaseDirCacheEditor.cache:Lorg/eclipse/jgit/dircache/DirCache;
            aload 0 /* this */
            getfield org.eclipse.jgit.dircache.BaseDirCacheEditor.entries:[Lorg/eclipse/jgit/dircache/DirCacheEntry;
            aload 0 /* this */
            getfield org.eclipse.jgit.dircache.BaseDirCacheEditor.entryCnt:I
            invokevirtual org.eclipse.jgit.dircache.DirCache.replace:([Lorg/eclipse/jgit/dircache/DirCacheEntry;I)V
         6: .line 186
            return
        end local 0 // org.eclipse.jgit.dircache.BaseDirCacheEditor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/eclipse/jgit/dircache/BaseDirCacheEditor;
            3    5     1     n  [Lorg/eclipse/jgit/dircache/DirCacheEntry;

  private void checkNameConflicts();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=7, locals=12, args_size=1
        start local 0 // org.eclipse.jgit.dircache.BaseDirCacheEditor this
         0: .line 189
            aload 0 /* this */
            getfield org.eclipse.jgit.dircache.BaseDirCacheEditor.entryCnt:I
            iconst_1
            isub
            istore 1 /* end */
        start local 1 // int end
         1: .line 190
            iconst_0
            istore 2 /* eIdx */
        start local 2 // int eIdx
         2: goto 33
         3: .line 191
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jgit.dircache.BaseDirCacheEditor.entries:[Lorg/eclipse/jgit/dircache/DirCacheEntry;
            iload 2 /* eIdx */
            aaload
            astore 3 /* e */
        start local 3 // org.eclipse.jgit.dircache.DirCacheEntry e
         4: .line 192
            aload 3 /* e */
            invokevirtual org.eclipse.jgit.dircache.DirCacheEntry.getStage:()I
            ifeq 6
         5: .line 193
            goto 32
         6: .line 196
      StackMap locals: org.eclipse.jgit.dircache.DirCacheEntry
      StackMap stack:
            aload 3 /* e */
            getfield org.eclipse.jgit.dircache.DirCacheEntry.path:[B
            astore 4 /* ePath */
        start local 4 // byte[] ePath
         7: .line 197
            aload 4 /* ePath */
            invokestatic org.eclipse.jgit.dircache.BaseDirCacheEditor.lastSlash:([B)I
            iconst_1
            iadd
            istore 5 /* prefixLen */
        start local 5 // int prefixLen
         8: .line 199
            iload 2 /* eIdx */
            iconst_1
            iadd
            istore 6 /* nIdx */
        start local 6 // int nIdx
         9: goto 31
        10: .line 200
      StackMap locals: byte[] int int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jgit.dircache.BaseDirCacheEditor.entries:[Lorg/eclipse/jgit/dircache/DirCacheEntry;
            iload 6 /* nIdx */
            aaload
            astore 7 /* n */
        start local 7 // org.eclipse.jgit.dircache.DirCacheEntry n
        11: .line 201
            aload 7 /* n */
            invokevirtual org.eclipse.jgit.dircache.DirCacheEntry.getStage:()I
            ifeq 13
        12: .line 202
            goto 30
        13: .line 205
      StackMap locals: org.eclipse.jgit.dircache.DirCacheEntry
      StackMap stack:
            aload 7 /* n */
            getfield org.eclipse.jgit.dircache.DirCacheEntry.path:[B
            astore 8 /* nPath */
        start local 8 // byte[] nPath
        14: .line 206
            aload 4 /* ePath */
            aload 8 /* nPath */
            iload 5 /* prefixLen */
            invokestatic org.eclipse.jgit.dircache.BaseDirCacheEditor.startsWith:([B[BI)Z
            ifne 16
        15: .line 208
            goto 32
        16: .line 211
      StackMap locals: byte[]
      StackMap stack:
            aload 8 /* nPath */
            iload 5 /* prefixLen */
            invokestatic org.eclipse.jgit.dircache.BaseDirCacheEditor.nextSlash:([BI)I
            istore 9 /* s */
        start local 9 // int s
        17: .line 212
            iload 9 /* s */
            aload 8 /* nPath */
            arraylength
            if_icmpge 18
            sipush 16384
            goto 19
      StackMap locals: int
      StackMap stack:
        18: aload 7 /* n */
            invokevirtual org.eclipse.jgit.dircache.DirCacheEntry.getRawMode:()I
      StackMap locals:
      StackMap stack: int
        19: istore 10 /* m */
        start local 10 // int m
        20: .line 214
            aload 4 /* ePath */
            iload 5 /* prefixLen */
            aload 4 /* ePath */
            arraylength
        21: .line 215
            aload 8 /* nPath */
            iload 5 /* prefixLen */
            iload 9 /* s */
            iload 10 /* m */
        22: .line 213
            invokestatic org.eclipse.jgit.util.Paths.compareSameName:([BII[BIII)I
            istore 11 /* cmp */
        start local 11 // int cmp
        23: .line 216
            iload 11 /* cmp */
            ifge 25
        24: .line 217
            goto 32
        25: .line 218
      StackMap locals: int int
      StackMap stack:
            iload 11 /* cmp */
            ifne 30
        26: .line 219
            new org.eclipse.jgit.errors.DirCacheNameConflictException
            dup
        27: .line 220
            aload 3 /* e */
            invokevirtual org.eclipse.jgit.dircache.DirCacheEntry.getPathString:()Ljava/lang/String;
        28: .line 221
            aload 7 /* n */
            invokevirtual org.eclipse.jgit.dircache.DirCacheEntry.getPathString:()Ljava/lang/String;
        29: .line 219
            invokespecial org.eclipse.jgit.errors.DirCacheNameConflictException.<init>:(Ljava/lang/String;Ljava/lang/String;)V
            athrow
        end local 11 // int cmp
        end local 10 // int m
        end local 9 // int s
        end local 8 // byte[] nPath
        end local 7 // org.eclipse.jgit.dircache.DirCacheEntry n
        30: .line 199
      StackMap locals: org.eclipse.jgit.dircache.BaseDirCacheEditor int int org.eclipse.jgit.dircache.DirCacheEntry byte[] int int
      StackMap stack:
            iinc 6 /* nIdx */ 1
      StackMap locals:
      StackMap stack:
        31: iload 6 /* nIdx */
            aload 0 /* this */
            getfield org.eclipse.jgit.dircache.BaseDirCacheEditor.entryCnt:I
            if_icmplt 10
        end local 6 // int nIdx
        end local 5 // int prefixLen
        end local 4 // byte[] ePath
        end local 3 // org.eclipse.jgit.dircache.DirCacheEntry e
        32: .line 190
      StackMap locals: org.eclipse.jgit.dircache.BaseDirCacheEditor int int
      StackMap stack:
            iinc 2 /* eIdx */ 1
      StackMap locals:
      StackMap stack:
        33: iload 2 /* eIdx */
            iload 1 /* end */
            if_icmplt 3
        end local 2 // int eIdx
        34: .line 225
            return
        end local 1 // int end
        end local 0 // org.eclipse.jgit.dircache.BaseDirCacheEditor this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   35     0       this  Lorg/eclipse/jgit/dircache/BaseDirCacheEditor;
            1   35     1        end  I
            2   34     2       eIdx  I
            4   32     3          e  Lorg/eclipse/jgit/dircache/DirCacheEntry;
            7   32     4      ePath  [B
            8   32     5  prefixLen  I
            9   32     6       nIdx  I
           11   30     7          n  Lorg/eclipse/jgit/dircache/DirCacheEntry;
           14   30     8      nPath  [B
           17   30     9          s  I
           20   30    10          m  I
           23   30    11        cmp  I

  private static int lastSlash(byte[]);
    descriptor: ([B)I
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // byte[] path
         0: .line 228
            aload 0 /* path */
            arraylength
            iconst_1
            isub
            istore 1 /* i */
        start local 1 // int i
         1: goto 5
         2: .line 229
      StackMap locals: int
      StackMap stack:
            aload 0 /* path */
            iload 1 /* i */
            baload
            bipush 47
            if_icmpne 4
         3: .line 230
            iload 1 /* i */
            ireturn
         4: .line 228
      StackMap locals:
      StackMap stack:
            iinc 1 /* i */ -1
      StackMap locals:
      StackMap stack:
         5: iload 1 /* i */
            ifge 2
        end local 1 // int i
         6: .line 233
            iconst_m1
            ireturn
        end local 0 // byte[] path
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  path  [B
            1    6     1     i  I
    MethodParameters:
      Name  Flags
      path  

  private static int nextSlash(byte[], int);
    descriptor: ([BI)I
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // byte[] b
        start local 1 // int p
         0: .line 237
            aload 0 /* b */
            arraylength
            istore 2 /* n */
        start local 2 // int n
         1: .line 238
            goto 5
         2: .line 239
      StackMap locals: int
      StackMap stack:
            aload 0 /* b */
            iload 1 /* p */
            baload
            bipush 47
            if_icmpne 4
         3: .line 240
            iload 1 /* p */
            ireturn
         4: .line 238
      StackMap locals:
      StackMap stack:
            iinc 1 /* p */ 1
      StackMap locals:
      StackMap stack:
         5: iload 1 /* p */
            iload 2 /* n */
            if_icmplt 2
         6: .line 243
            iload 2 /* n */
            ireturn
        end local 2 // int n
        end local 1 // int p
        end local 0 // byte[] b
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0     b  [B
            0    7     1     p  I
            1    7     2     n  I
    MethodParameters:
      Name  Flags
      b     
      p     

  private static boolean startsWith(byte[], byte[], int);
    descriptor: ([B[BI)Z
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // byte[] a
        start local 1 // byte[] b
        start local 2 // int n
         0: .line 247
            aload 1 /* b */
            arraylength
            iload 2 /* n */
            if_icmpge 2
         1: .line 248
            iconst_0
            ireturn
         2: .line 250
      StackMap locals:
      StackMap stack:
            iinc 2 /* n */ -1
            goto 6
         3: .line 251
      StackMap locals:
      StackMap stack:
            aload 0 /* a */
            iload 2 /* n */
            baload
            aload 1 /* b */
            iload 2 /* n */
            baload
            if_icmpeq 5
         4: .line 252
            iconst_0
            ireturn
         5: .line 250
      StackMap locals:
      StackMap stack:
            iinc 2 /* n */ -1
      StackMap locals:
      StackMap stack:
         6: iload 2 /* n */
            ifge 3
         7: .line 255
            iconst_1
            ireturn
        end local 2 // int n
        end local 1 // byte[] b
        end local 0 // byte[] a
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0     a  [B
            0    8     1     b  [B
            0    8     2     n  I
    MethodParameters:
      Name  Flags
      a     
      b     
      n     

  public boolean commit();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jgit.dircache.BaseDirCacheEditor this
         0: .line 276
            aload 0 /* this */
            invokevirtual org.eclipse.jgit.dircache.BaseDirCacheEditor.finish:()V
         1: .line 277
            aload 0 /* this */
            getfield org.eclipse.jgit.dircache.BaseDirCacheEditor.cache:Lorg/eclipse/jgit/dircache/DirCache;
            invokevirtual org.eclipse.jgit.dircache.DirCache.write:()V
         2: .line 278
            aload 0 /* this */
            getfield org.eclipse.jgit.dircache.BaseDirCacheEditor.cache:Lorg/eclipse/jgit/dircache/DirCache;
            invokevirtual org.eclipse.jgit.dircache.DirCache.commit:()Z
            ireturn
        end local 0 // org.eclipse.jgit.dircache.BaseDirCacheEditor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/jgit/dircache/BaseDirCacheEditor;
    Exceptions:
      throws java.io.IOException
}
SourceFile: "BaseDirCacheEditor.java"