public class org.eclipse.jgit.lib.ObjectChecker
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.eclipse.jgit.lib.ObjectChecker
  super_class: java.lang.Object
{
  public static final byte[] tree;
    descriptor: [B
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  public static final byte[] parent;
    descriptor: [B
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  public static final byte[] author;
    descriptor: [B
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  public static final byte[] committer;
    descriptor: [B
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  public static final byte[] encoding;
    descriptor: [B
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  public static final byte[] object;
    descriptor: [B
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  public static final byte[] type;
    descriptor: [B
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  public static final byte[] tag;
    descriptor: [B
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  public static final byte[] tagger;
    descriptor: [B
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  private static final byte[] dotGitmodules;
    descriptor: [B
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private final org.eclipse.jgit.lib.MutableObjectId tempId;
    descriptor: Lorg/eclipse/jgit/lib/MutableObjectId;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final org.eclipse.jgit.util.MutableInteger bufPtr;
    descriptor: Lorg/eclipse/jgit/util/MutableInteger;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private java.util.EnumSet<org.eclipse.jgit.lib.ObjectChecker$ErrorType> errors;
    descriptor: Ljava/util/EnumSet;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/EnumSet<Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;>;

  private org.eclipse.jgit.lib.ObjectIdSet skipList;
    descriptor: Lorg/eclipse/jgit/lib/ObjectIdSet;
    flags: (0x0002) ACC_PRIVATE

  private boolean allowInvalidPersonIdent;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private boolean windows;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private boolean macosx;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private final java.util.List<org.eclipse.jgit.lib.GitmoduleEntry> gitsubmodules;
    descriptor: Ljava/util/List;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/List<Lorg/eclipse/jgit/lib/GitmoduleEntry;>;

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 84
            ldc "tree "
            invokestatic org.eclipse.jgit.lib.Constants.encodeASCII:(Ljava/lang/String;)[B
            putstatic org.eclipse.jgit.lib.ObjectChecker.tree:[B
         1: .line 87
            ldc "parent "
            invokestatic org.eclipse.jgit.lib.Constants.encodeASCII:(Ljava/lang/String;)[B
            putstatic org.eclipse.jgit.lib.ObjectChecker.parent:[B
         2: .line 90
            ldc "author "
            invokestatic org.eclipse.jgit.lib.Constants.encodeASCII:(Ljava/lang/String;)[B
            putstatic org.eclipse.jgit.lib.ObjectChecker.author:[B
         3: .line 93
            ldc "committer "
            invokestatic org.eclipse.jgit.lib.Constants.encodeASCII:(Ljava/lang/String;)[B
            putstatic org.eclipse.jgit.lib.ObjectChecker.committer:[B
         4: .line 96
            ldc "encoding "
            invokestatic org.eclipse.jgit.lib.Constants.encodeASCII:(Ljava/lang/String;)[B
            putstatic org.eclipse.jgit.lib.ObjectChecker.encoding:[B
         5: .line 99
            ldc "object "
            invokestatic org.eclipse.jgit.lib.Constants.encodeASCII:(Ljava/lang/String;)[B
            putstatic org.eclipse.jgit.lib.ObjectChecker.object:[B
         6: .line 102
            ldc "type "
            invokestatic org.eclipse.jgit.lib.Constants.encodeASCII:(Ljava/lang/String;)[B
            putstatic org.eclipse.jgit.lib.ObjectChecker.type:[B
         7: .line 105
            ldc "tag "
            invokestatic org.eclipse.jgit.lib.Constants.encodeASCII:(Ljava/lang/String;)[B
            putstatic org.eclipse.jgit.lib.ObjectChecker.tag:[B
         8: .line 108
            ldc "tagger "
            invokestatic org.eclipse.jgit.lib.Constants.encodeASCII:(Ljava/lang/String;)[B
            putstatic org.eclipse.jgit.lib.ObjectChecker.tagger:[B
         9: .line 111
            ldc ".gitmodules"
            invokestatic org.eclipse.jgit.lib.Constants.encodeASCII:(Ljava/lang/String;)[B
            putstatic org.eclipse.jgit.lib.ObjectChecker.dotGitmodules:[B
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.jgit.lib.ObjectChecker this
         0: .line 82
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 174
            aload 0 /* this */
            new org.eclipse.jgit.lib.MutableObjectId
            dup
            invokespecial org.eclipse.jgit.lib.MutableObjectId.<init>:()V
            putfield org.eclipse.jgit.lib.ObjectChecker.tempId:Lorg/eclipse/jgit/lib/MutableObjectId;
         2: .line 175
            aload 0 /* this */
            new org.eclipse.jgit.util.MutableInteger
            dup
            invokespecial org.eclipse.jgit.util.MutableInteger.<init>:()V
            putfield org.eclipse.jgit.lib.ObjectChecker.bufPtr:Lorg/eclipse/jgit/util/MutableInteger;
         3: .line 177
            aload 0 /* this */
            ldc Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;
            invokestatic java.util.EnumSet.allOf:(Ljava/lang/Class;)Ljava/util/EnumSet;
            putfield org.eclipse.jgit.lib.ObjectChecker.errors:Ljava/util/EnumSet;
         4: .line 183
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield org.eclipse.jgit.lib.ObjectChecker.gitsubmodules:Ljava/util/List;
         5: .line 82
            return
        end local 0 // org.eclipse.jgit.lib.ObjectChecker this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/eclipse/jgit/lib/ObjectChecker;

  public org.eclipse.jgit.lib.ObjectChecker setSkipList(org.eclipse.jgit.lib.ObjectIdSet);
    descriptor: (Lorg/eclipse/jgit/lib/ObjectIdSet;)Lorg/eclipse/jgit/lib/ObjectChecker;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jgit.lib.ObjectChecker this
        start local 1 // org.eclipse.jgit.lib.ObjectIdSet objects
         0: .line 195
            aload 0 /* this */
            aload 1 /* objects */
            putfield org.eclipse.jgit.lib.ObjectChecker.skipList:Lorg/eclipse/jgit/lib/ObjectIdSet;
         1: .line 196
            aload 0 /* this */
            areturn
        end local 1 // org.eclipse.jgit.lib.ObjectIdSet objects
        end local 0 // org.eclipse.jgit.lib.ObjectChecker this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/eclipse/jgit/lib/ObjectChecker;
            0    2     1  objects  Lorg/eclipse/jgit/lib/ObjectIdSet;
    RuntimeVisibleParameterAnnotations: 
      0:
        org.eclipse.jgit.annotations.Nullable()
    MethodParameters:
         Name  Flags
      objects  

  public org.eclipse.jgit.lib.ObjectChecker setIgnore(java.util.Set<org.eclipse.jgit.lib.ObjectChecker$ErrorType>);
    descriptor: (Ljava/util/Set;)Lorg/eclipse/jgit/lib/ObjectChecker;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jgit.lib.ObjectChecker this
        start local 1 // java.util.Set ids
         0: .line 208
            aload 0 /* this */
            ldc Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;
            invokestatic java.util.EnumSet.allOf:(Ljava/lang/Class;)Ljava/util/EnumSet;
            putfield org.eclipse.jgit.lib.ObjectChecker.errors:Ljava/util/EnumSet;
         1: .line 209
            aload 1 /* ids */
            ifnull 3
         2: .line 210
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectChecker.errors:Ljava/util/EnumSet;
            aload 1 /* ids */
            invokevirtual java.util.EnumSet.removeAll:(Ljava/util/Collection;)Z
            pop
         3: .line 212
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 1 // java.util.Set ids
        end local 0 // org.eclipse.jgit.lib.ObjectChecker this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/eclipse/jgit/lib/ObjectChecker;
            0    4     1   ids  Ljava/util/Set<Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;>;
    Signature: (Ljava/util/Set<Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;>;)Lorg/eclipse/jgit/lib/ObjectChecker;
    RuntimeVisibleParameterAnnotations: 
      0:
        org.eclipse.jgit.annotations.Nullable()
    MethodParameters:
      Name  Flags
      ids   

  public org.eclipse.jgit.lib.ObjectChecker setIgnore(org.eclipse.jgit.lib.ObjectChecker$ErrorType, boolean);
    descriptor: (Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;Z)Lorg/eclipse/jgit/lib/ObjectChecker;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.eclipse.jgit.lib.ObjectChecker this
        start local 1 // org.eclipse.jgit.lib.ObjectChecker$ErrorType id
        start local 2 // boolean ignore
         0: .line 227
            iload 2 /* ignore */
            ifeq 3
         1: .line 228
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectChecker.errors:Ljava/util/EnumSet;
            aload 1 /* id */
            invokevirtual java.util.EnumSet.remove:(Ljava/lang/Object;)Z
            pop
         2: .line 229
            goto 4
         3: .line 230
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectChecker.errors:Ljava/util/EnumSet;
            aload 1 /* id */
            invokevirtual java.util.EnumSet.add:(Ljava/lang/Object;)Z
            pop
         4: .line 232
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 2 // boolean ignore
        end local 1 // org.eclipse.jgit.lib.ObjectChecker$ErrorType id
        end local 0 // org.eclipse.jgit.lib.ObjectChecker this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lorg/eclipse/jgit/lib/ObjectChecker;
            0    5     1      id  Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;
            0    5     2  ignore  Z
    MethodParameters:
        Name  Flags
      id      
      ignore  

  public org.eclipse.jgit.lib.ObjectChecker setAllowLeadingZeroFileMode(boolean);
    descriptor: (Z)Lorg/eclipse/jgit/lib/ObjectChecker;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.jgit.lib.ObjectChecker this
        start local 1 // boolean allow
         0: .line 250
            aload 0 /* this */
            getstatic org.eclipse.jgit.lib.ObjectChecker$ErrorType.ZERO_PADDED_FILEMODE:Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;
            iload 1 /* allow */
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.setIgnore:(Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;Z)Lorg/eclipse/jgit/lib/ObjectChecker;
            areturn
        end local 1 // boolean allow
        end local 0 // org.eclipse.jgit.lib.ObjectChecker this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/eclipse/jgit/lib/ObjectChecker;
            0    1     1  allow  Z
    MethodParameters:
       Name  Flags
      allow  

  public org.eclipse.jgit.lib.ObjectChecker setAllowInvalidPersonIdent(boolean);
    descriptor: (Z)Lorg/eclipse/jgit/lib/ObjectChecker;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jgit.lib.ObjectChecker this
        start local 1 // boolean allow
         0: .line 265
            aload 0 /* this */
            iload 1 /* allow */
            putfield org.eclipse.jgit.lib.ObjectChecker.allowInvalidPersonIdent:Z
         1: .line 266
            aload 0 /* this */
            areturn
        end local 1 // boolean allow
        end local 0 // org.eclipse.jgit.lib.ObjectChecker this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/eclipse/jgit/lib/ObjectChecker;
            0    2     1  allow  Z
    MethodParameters:
       Name  Flags
      allow  

  public org.eclipse.jgit.lib.ObjectChecker setSafeForWindows(boolean);
    descriptor: (Z)Lorg/eclipse/jgit/lib/ObjectChecker;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jgit.lib.ObjectChecker this
        start local 1 // boolean win
         0: .line 279
            aload 0 /* this */
            iload 1 /* win */
            putfield org.eclipse.jgit.lib.ObjectChecker.windows:Z
         1: .line 280
            aload 0 /* this */
            areturn
        end local 1 // boolean win
        end local 0 // org.eclipse.jgit.lib.ObjectChecker this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/jgit/lib/ObjectChecker;
            0    2     1   win  Z
    MethodParameters:
      Name  Flags
      win   

  public org.eclipse.jgit.lib.ObjectChecker setSafeForMacOS(boolean);
    descriptor: (Z)Lorg/eclipse/jgit/lib/ObjectChecker;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jgit.lib.ObjectChecker this
        start local 1 // boolean mac
         0: .line 294
            aload 0 /* this */
            iload 1 /* mac */
            putfield org.eclipse.jgit.lib.ObjectChecker.macosx:Z
         1: .line 295
            aload 0 /* this */
            areturn
        end local 1 // boolean mac
        end local 0 // org.eclipse.jgit.lib.ObjectChecker this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/jgit/lib/ObjectChecker;
            0    2     1   mac  Z
    MethodParameters:
      Name  Flags
      mac   

  public void check(int, byte[]);
    descriptor: (I[B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.eclipse.jgit.lib.ObjectChecker this
        start local 1 // int objType
        start local 2 // byte[] raw
         0: .line 313
            aload 0 /* this */
            aload 0 /* this */
            iload 1 /* objType */
            aload 2 /* raw */
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.idFor:(I[B)Lorg/eclipse/jgit/lib/ObjectId;
            iload 1 /* objType */
            aload 2 /* raw */
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.check:(Lorg/eclipse/jgit/lib/AnyObjectId;I[B)V
         1: .line 314
            return
        end local 2 // byte[] raw
        end local 1 // int objType
        end local 0 // org.eclipse.jgit.lib.ObjectChecker this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/eclipse/jgit/lib/ObjectChecker;
            0    2     1  objType  I
            0    2     2      raw  [B
    Exceptions:
      throws org.eclipse.jgit.errors.CorruptObjectException
    MethodParameters:
         Name  Flags
      objType  
      raw      

  public void check(org.eclipse.jgit.lib.AnyObjectId, int, byte[]);
    descriptor: (Lorg/eclipse/jgit/lib/AnyObjectId;I[B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=8, locals=5, args_size=4
        start local 0 // org.eclipse.jgit.lib.ObjectChecker this
        start local 1 // org.eclipse.jgit.lib.AnyObjectId id
        start local 2 // int objType
        start local 3 // byte[] raw
         0: .line 334
            iload 2 /* objType */
            tableswitch { // 1 - 4
                    1: 1
                    2: 5
                    3: 7
                    4: 3
              default: 14
          }
         1: .line 336
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* id */
            aload 3 /* raw */
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.checkCommit:(Lorg/eclipse/jgit/lib/AnyObjectId;[B)V
         2: .line 337
            goto 18
         3: .line 339
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* id */
            aload 3 /* raw */
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.checkTag:(Lorg/eclipse/jgit/lib/AnyObjectId;[B)V
         4: .line 340
            goto 18
         5: .line 342
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* id */
            aload 3 /* raw */
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.checkTree:(Lorg/eclipse/jgit/lib/AnyObjectId;[B)V
         6: .line 343
            goto 18
         7: .line 345
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.newBlobObjectChecker:()Lorg/eclipse/jgit/lib/BlobObjectChecker;
            astore 4 /* checker */
        start local 4 // org.eclipse.jgit.lib.BlobObjectChecker checker
         8: .line 346
            aload 4 /* checker */
            ifnonnull 11
         9: .line 347
            aload 0 /* this */
            aload 3 /* raw */
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.checkBlob:([B)V
        10: .line 348
            goto 18
        11: .line 349
      StackMap locals: org.eclipse.jgit.lib.BlobObjectChecker
      StackMap stack:
            aload 4 /* checker */
            aload 3 /* raw */
            iconst_0
            aload 3 /* raw */
            arraylength
            invokeinterface org.eclipse.jgit.lib.BlobObjectChecker.update:([BII)V
        12: .line 350
            aload 4 /* checker */
            aload 1 /* id */
            invokeinterface org.eclipse.jgit.lib.BlobObjectChecker.endBlob:(Lorg/eclipse/jgit/lib/AnyObjectId;)V
        13: .line 352
            goto 18
        end local 4 // org.eclipse.jgit.lib.BlobObjectChecker checker
        14: .line 354
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getstatic org.eclipse.jgit.lib.ObjectChecker$ErrorType.UNKNOWN_TYPE:Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;
            aload 1 /* id */
        15: .line 355
            invokestatic org.eclipse.jgit.internal.JGitText.get:()Lorg/eclipse/jgit/internal/JGitText;
            getfield org.eclipse.jgit.internal.JGitText.corruptObjectInvalidType2:Ljava/lang/String;
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
        16: .line 356
            iload 2 /* objType */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
        17: .line 354
            invokestatic java.text.MessageFormat.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.report:(Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;Lorg/eclipse/jgit/lib/AnyObjectId;Ljava/lang/String;)V
        18: .line 358
      StackMap locals:
      StackMap stack:
            return
        end local 3 // byte[] raw
        end local 2 // int objType
        end local 1 // org.eclipse.jgit.lib.AnyObjectId id
        end local 0 // org.eclipse.jgit.lib.ObjectChecker this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   19     0     this  Lorg/eclipse/jgit/lib/ObjectChecker;
            0   19     1       id  Lorg/eclipse/jgit/lib/AnyObjectId;
            0   19     2  objType  I
            0   19     3      raw  [B
            8   14     4  checker  Lorg/eclipse/jgit/lib/BlobObjectChecker;
    Exceptions:
      throws org.eclipse.jgit.errors.CorruptObjectException
    RuntimeVisibleParameterAnnotations: 
      0:
        org.eclipse.jgit.annotations.Nullable()
      1:
      2:
    MethodParameters:
         Name  Flags
      id       
      objType  
      raw      

  private boolean checkId(byte[]);
    descriptor: ([B)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.jgit.lib.ObjectChecker this
        start local 1 // byte[] raw
         0: .line 361
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectChecker.bufPtr:Lorg/eclipse/jgit/util/MutableInteger;
            getfield org.eclipse.jgit.util.MutableInteger.value:I
            istore 2 /* p */
        start local 2 // int p
         1: .line 363
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectChecker.tempId:Lorg/eclipse/jgit/lib/MutableObjectId;
            aload 1 /* raw */
            iload 2 /* p */
            invokevirtual org.eclipse.jgit.lib.MutableObjectId.fromString:([BI)V
         2: .line 364
            goto 6
      StackMap locals: org.eclipse.jgit.lib.ObjectChecker byte[] int
      StackMap stack: java.lang.IllegalArgumentException
         3: pop
         4: .line 365
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectChecker.bufPtr:Lorg/eclipse/jgit/util/MutableInteger;
            aload 1 /* raw */
            iload 2 /* p */
            invokestatic org.eclipse.jgit.util.RawParseUtils.nextLF:([BI)I
            putfield org.eclipse.jgit.util.MutableInteger.value:I
         5: .line 366
            iconst_0
            ireturn
         6: .line 369
      StackMap locals:
      StackMap stack:
            iinc 2 /* p */ 40
         7: .line 370
            aload 1 /* raw */
            iload 2 /* p */
            baload
            bipush 10
            if_icmpne 10
         8: .line 371
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectChecker.bufPtr:Lorg/eclipse/jgit/util/MutableInteger;
            iload 2 /* p */
            iconst_1
            iadd
            putfield org.eclipse.jgit.util.MutableInteger.value:I
         9: .line 372
            iconst_1
            ireturn
        10: .line 374
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectChecker.bufPtr:Lorg/eclipse/jgit/util/MutableInteger;
            aload 1 /* raw */
            iload 2 /* p */
            invokestatic org.eclipse.jgit.util.RawParseUtils.nextLF:([BI)I
            putfield org.eclipse.jgit.util.MutableInteger.value:I
        11: .line 375
            iconst_0
            ireturn
        end local 2 // int p
        end local 1 // byte[] raw
        end local 0 // org.eclipse.jgit.lib.ObjectChecker this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   12     0  this  Lorg/eclipse/jgit/lib/ObjectChecker;
            0   12     1   raw  [B
            1   12     2     p  I
      Exception table:
        from    to  target  type
           1     2       3  Class java.lang.IllegalArgumentException
    MethodParameters:
      Name  Flags
      raw   

  private void checkPersonIdent(byte[], org.eclipse.jgit.lib.AnyObjectId);
    descriptor: ([BLorg/eclipse/jgit/lib/AnyObjectId;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=6, args_size=3
        start local 0 // org.eclipse.jgit.lib.ObjectChecker this
        start local 1 // byte[] raw
        start local 2 // org.eclipse.jgit.lib.AnyObjectId id
         0: .line 380
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectChecker.allowInvalidPersonIdent:Z
            ifeq 3
         1: .line 381
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectChecker.bufPtr:Lorg/eclipse/jgit/util/MutableInteger;
            aload 1 /* raw */
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectChecker.bufPtr:Lorg/eclipse/jgit/util/MutableInteger;
            getfield org.eclipse.jgit.util.MutableInteger.value:I
            invokestatic org.eclipse.jgit.util.RawParseUtils.nextLF:([BI)I
            putfield org.eclipse.jgit.util.MutableInteger.value:I
         2: .line 382
            return
         3: .line 385
      StackMap locals:
      StackMap stack:
            aload 1 /* raw */
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectChecker.bufPtr:Lorg/eclipse/jgit/util/MutableInteger;
            getfield org.eclipse.jgit.util.MutableInteger.value:I
            bipush 60
            invokestatic org.eclipse.jgit.util.RawParseUtils.nextLF:([BIC)I
            istore 3 /* emailB */
        start local 3 // int emailB
         4: .line 386
            iload 3 /* emailB */
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectChecker.bufPtr:Lorg/eclipse/jgit/util/MutableInteger;
            getfield org.eclipse.jgit.util.MutableInteger.value:I
            if_icmpeq 5
            aload 1 /* raw */
            iload 3 /* emailB */
            iconst_1
            isub
            baload
            bipush 60
            if_icmpeq 8
         5: .line 387
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getstatic org.eclipse.jgit.lib.ObjectChecker$ErrorType.MISSING_EMAIL:Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;
            aload 2 /* id */
            invokestatic org.eclipse.jgit.internal.JGitText.get:()Lorg/eclipse/jgit/internal/JGitText;
            getfield org.eclipse.jgit.internal.JGitText.corruptObjectMissingEmail:Ljava/lang/String;
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.report:(Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;Lorg/eclipse/jgit/lib/AnyObjectId;Ljava/lang/String;)V
         6: .line 388
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectChecker.bufPtr:Lorg/eclipse/jgit/util/MutableInteger;
            aload 1 /* raw */
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectChecker.bufPtr:Lorg/eclipse/jgit/util/MutableInteger;
            getfield org.eclipse.jgit.util.MutableInteger.value:I
            invokestatic org.eclipse.jgit.util.RawParseUtils.nextLF:([BI)I
            putfield org.eclipse.jgit.util.MutableInteger.value:I
         7: .line 389
            return
         8: .line 392
      StackMap locals:
      StackMap stack:
            aload 1 /* raw */
            iload 3 /* emailB */
            bipush 62
            invokestatic org.eclipse.jgit.util.RawParseUtils.nextLF:([BIC)I
            istore 4 /* emailE */
        start local 4 // int emailE
         9: .line 393
            iload 4 /* emailE */
            iload 3 /* emailB */
            if_icmpeq 10
            aload 1 /* raw */
            iload 4 /* emailE */
            iconst_1
            isub
            baload
            bipush 62
            if_icmpeq 13
        10: .line 394
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getstatic org.eclipse.jgit.lib.ObjectChecker$ErrorType.BAD_EMAIL:Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;
            aload 2 /* id */
            invokestatic org.eclipse.jgit.internal.JGitText.get:()Lorg/eclipse/jgit/internal/JGitText;
            getfield org.eclipse.jgit.internal.JGitText.corruptObjectBadEmail:Ljava/lang/String;
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.report:(Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;Lorg/eclipse/jgit/lib/AnyObjectId;Ljava/lang/String;)V
        11: .line 395
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectChecker.bufPtr:Lorg/eclipse/jgit/util/MutableInteger;
            aload 1 /* raw */
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectChecker.bufPtr:Lorg/eclipse/jgit/util/MutableInteger;
            getfield org.eclipse.jgit.util.MutableInteger.value:I
            invokestatic org.eclipse.jgit.util.RawParseUtils.nextLF:([BI)I
            putfield org.eclipse.jgit.util.MutableInteger.value:I
        12: .line 396
            return
        13: .line 398
      StackMap locals:
      StackMap stack:
            iload 4 /* emailE */
            aload 1 /* raw */
            arraylength
            if_icmpeq 14
            aload 1 /* raw */
            iload 4 /* emailE */
            baload
            bipush 32
            if_icmpeq 19
        14: .line 399
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getstatic org.eclipse.jgit.lib.ObjectChecker$ErrorType.MISSING_SPACE_BEFORE_DATE:Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;
            aload 2 /* id */
        15: .line 400
            invokestatic org.eclipse.jgit.internal.JGitText.get:()Lorg/eclipse/jgit/internal/JGitText;
            getfield org.eclipse.jgit.internal.JGitText.corruptObjectBadDate:Ljava/lang/String;
        16: .line 399
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.report:(Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;Lorg/eclipse/jgit/lib/AnyObjectId;Ljava/lang/String;)V
        17: .line 401
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectChecker.bufPtr:Lorg/eclipse/jgit/util/MutableInteger;
            aload 1 /* raw */
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectChecker.bufPtr:Lorg/eclipse/jgit/util/MutableInteger;
            getfield org.eclipse.jgit.util.MutableInteger.value:I
            invokestatic org.eclipse.jgit.util.RawParseUtils.nextLF:([BI)I
            putfield org.eclipse.jgit.util.MutableInteger.value:I
        18: .line 402
            return
        19: .line 405
      StackMap locals:
      StackMap stack:
            aload 1 /* raw */
            iload 4 /* emailE */
            iconst_1
            iadd
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectChecker.bufPtr:Lorg/eclipse/jgit/util/MutableInteger;
            invokestatic org.eclipse.jgit.util.RawParseUtils.parseBase10:([BILorg/eclipse/jgit/util/MutableInteger;)I
            pop
        20: .line 406
            iload 4 /* emailE */
            iconst_1
            iadd
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectChecker.bufPtr:Lorg/eclipse/jgit/util/MutableInteger;
            getfield org.eclipse.jgit.util.MutableInteger.value:I
            if_icmpeq 22
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectChecker.bufPtr:Lorg/eclipse/jgit/util/MutableInteger;
            getfield org.eclipse.jgit.util.MutableInteger.value:I
            aload 1 /* raw */
            arraylength
            if_icmpeq 22
        21: .line 407
            aload 1 /* raw */
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectChecker.bufPtr:Lorg/eclipse/jgit/util/MutableInteger;
            getfield org.eclipse.jgit.util.MutableInteger.value:I
            baload
            bipush 32
            if_icmpeq 25
        22: .line 408
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getstatic org.eclipse.jgit.lib.ObjectChecker$ErrorType.BAD_DATE:Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;
            aload 2 /* id */
            invokestatic org.eclipse.jgit.internal.JGitText.get:()Lorg/eclipse/jgit/internal/JGitText;
            getfield org.eclipse.jgit.internal.JGitText.corruptObjectBadDate:Ljava/lang/String;
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.report:(Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;Lorg/eclipse/jgit/lib/AnyObjectId;Ljava/lang/String;)V
        23: .line 409
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectChecker.bufPtr:Lorg/eclipse/jgit/util/MutableInteger;
            aload 1 /* raw */
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectChecker.bufPtr:Lorg/eclipse/jgit/util/MutableInteger;
            getfield org.eclipse.jgit.util.MutableInteger.value:I
            invokestatic org.eclipse.jgit.util.RawParseUtils.nextLF:([BI)I
            putfield org.eclipse.jgit.util.MutableInteger.value:I
        24: .line 410
            return
        25: .line 413
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectChecker.bufPtr:Lorg/eclipse/jgit/util/MutableInteger;
            getfield org.eclipse.jgit.util.MutableInteger.value:I
            iconst_1
            iadd
            istore 5 /* p */
        start local 5 // int p
        26: .line 414
            aload 1 /* raw */
            iload 5 /* p */
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectChecker.bufPtr:Lorg/eclipse/jgit/util/MutableInteger;
            invokestatic org.eclipse.jgit.util.RawParseUtils.parseBase10:([BILorg/eclipse/jgit/util/MutableInteger;)I
            pop
        27: .line 415
            iload 5 /* p */
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectChecker.bufPtr:Lorg/eclipse/jgit/util/MutableInteger;
            getfield org.eclipse.jgit.util.MutableInteger.value:I
            if_icmpne 31
        28: .line 416
            aload 0 /* this */
            getstatic org.eclipse.jgit.lib.ObjectChecker$ErrorType.BAD_TIMEZONE:Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;
            aload 2 /* id */
            invokestatic org.eclipse.jgit.internal.JGitText.get:()Lorg/eclipse/jgit/internal/JGitText;
            getfield org.eclipse.jgit.internal.JGitText.corruptObjectBadTimezone:Ljava/lang/String;
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.report:(Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;Lorg/eclipse/jgit/lib/AnyObjectId;Ljava/lang/String;)V
        29: .line 417
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectChecker.bufPtr:Lorg/eclipse/jgit/util/MutableInteger;
            aload 1 /* raw */
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectChecker.bufPtr:Lorg/eclipse/jgit/util/MutableInteger;
            getfield org.eclipse.jgit.util.MutableInteger.value:I
            invokestatic org.eclipse.jgit.util.RawParseUtils.nextLF:([BI)I
            putfield org.eclipse.jgit.util.MutableInteger.value:I
        30: .line 418
            return
        31: .line 421
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectChecker.bufPtr:Lorg/eclipse/jgit/util/MutableInteger;
            getfield org.eclipse.jgit.util.MutableInteger.value:I
            istore 5 /* p */
        32: .line 422
            aload 1 /* raw */
            iload 5 /* p */
            baload
            bipush 10
            if_icmpne 35
        33: .line 423
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectChecker.bufPtr:Lorg/eclipse/jgit/util/MutableInteger;
            iload 5 /* p */
            iconst_1
            iadd
            putfield org.eclipse.jgit.util.MutableInteger.value:I
        34: .line 424
            goto 37
        35: .line 425
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getstatic org.eclipse.jgit.lib.ObjectChecker$ErrorType.BAD_TIMEZONE:Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;
            aload 2 /* id */
            invokestatic org.eclipse.jgit.internal.JGitText.get:()Lorg/eclipse/jgit/internal/JGitText;
            getfield org.eclipse.jgit.internal.JGitText.corruptObjectBadTimezone:Ljava/lang/String;
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.report:(Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;Lorg/eclipse/jgit/lib/AnyObjectId;Ljava/lang/String;)V
        36: .line 426
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectChecker.bufPtr:Lorg/eclipse/jgit/util/MutableInteger;
            aload 1 /* raw */
            iload 5 /* p */
            invokestatic org.eclipse.jgit.util.RawParseUtils.nextLF:([BI)I
            putfield org.eclipse.jgit.util.MutableInteger.value:I
        37: .line 428
      StackMap locals:
      StackMap stack:
            return
        end local 5 // int p
        end local 4 // int emailE
        end local 3 // int emailB
        end local 2 // org.eclipse.jgit.lib.AnyObjectId id
        end local 1 // byte[] raw
        end local 0 // org.eclipse.jgit.lib.ObjectChecker this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   38     0    this  Lorg/eclipse/jgit/lib/ObjectChecker;
            0   38     1     raw  [B
            0   38     2      id  Lorg/eclipse/jgit/lib/AnyObjectId;
            4   38     3  emailB  I
            9   38     4  emailE  I
           26   38     5       p  I
    Exceptions:
      throws org.eclipse.jgit.errors.CorruptObjectException
    RuntimeVisibleParameterAnnotations: 
      0:
      1:
        org.eclipse.jgit.annotations.Nullable()
    MethodParameters:
      Name  Flags
      raw   
      id    

  public void checkCommit(byte[]);
    descriptor: ([B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.eclipse.jgit.lib.ObjectChecker this
        start local 1 // byte[] raw
         0: .line 439
            aload 0 /* this */
            aload 0 /* this */
            iconst_1
            aload 1 /* raw */
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.idFor:(I[B)Lorg/eclipse/jgit/lib/ObjectId;
            aload 1 /* raw */
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.checkCommit:(Lorg/eclipse/jgit/lib/AnyObjectId;[B)V
         1: .line 440
            return
        end local 1 // byte[] raw
        end local 0 // org.eclipse.jgit.lib.ObjectChecker this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/jgit/lib/ObjectChecker;
            0    2     1   raw  [B
    Exceptions:
      throws org.eclipse.jgit.errors.CorruptObjectException
    MethodParameters:
      Name  Flags
      raw   

  public void checkCommit(org.eclipse.jgit.lib.AnyObjectId, byte[]);
    descriptor: (Lorg/eclipse/jgit/lib/AnyObjectId;[B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.eclipse.jgit.lib.ObjectChecker this
        start local 1 // org.eclipse.jgit.lib.AnyObjectId id
        start local 2 // byte[] raw
         0: .line 455
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectChecker.bufPtr:Lorg/eclipse/jgit/util/MutableInteger;
            iconst_0
            putfield org.eclipse.jgit.util.MutableInteger.value:I
         1: .line 457
            aload 0 /* this */
            aload 2 /* raw */
            getstatic org.eclipse.jgit.lib.ObjectChecker.tree:[B
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.match:([B[B)Z
            ifne 4
         2: .line 458
            aload 0 /* this */
            getstatic org.eclipse.jgit.lib.ObjectChecker$ErrorType.MISSING_TREE:Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;
            aload 1 /* id */
            invokestatic org.eclipse.jgit.internal.JGitText.get:()Lorg/eclipse/jgit/internal/JGitText;
            getfield org.eclipse.jgit.internal.JGitText.corruptObjectNotreeHeader:Ljava/lang/String;
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.report:(Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;Lorg/eclipse/jgit/lib/AnyObjectId;Ljava/lang/String;)V
         3: .line 459
            goto 11
      StackMap locals:
      StackMap stack:
         4: aload 0 /* this */
            aload 2 /* raw */
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.checkId:([B)Z
            ifne 11
         5: .line 460
            aload 0 /* this */
            getstatic org.eclipse.jgit.lib.ObjectChecker$ErrorType.BAD_TREE_SHA1:Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;
            aload 1 /* id */
            invokestatic org.eclipse.jgit.internal.JGitText.get:()Lorg/eclipse/jgit/internal/JGitText;
            getfield org.eclipse.jgit.internal.JGitText.corruptObjectInvalidTree:Ljava/lang/String;
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.report:(Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;Lorg/eclipse/jgit/lib/AnyObjectId;Ljava/lang/String;)V
         6: .line 463
            goto 11
         7: .line 464
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 2 /* raw */
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.checkId:([B)Z
            ifne 11
         8: .line 465
            aload 0 /* this */
            getstatic org.eclipse.jgit.lib.ObjectChecker$ErrorType.BAD_PARENT_SHA1:Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;
            aload 1 /* id */
         9: .line 466
            invokestatic org.eclipse.jgit.internal.JGitText.get:()Lorg/eclipse/jgit/internal/JGitText;
            getfield org.eclipse.jgit.internal.JGitText.corruptObjectInvalidParent:Ljava/lang/String;
        10: .line 465
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.report:(Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;Lorg/eclipse/jgit/lib/AnyObjectId;Ljava/lang/String;)V
        11: .line 463
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 2 /* raw */
            getstatic org.eclipse.jgit.lib.ObjectChecker.parent:[B
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.match:([B[B)Z
            ifne 7
        12: .line 470
            aload 0 /* this */
            aload 2 /* raw */
            getstatic org.eclipse.jgit.lib.ObjectChecker.author:[B
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.match:([B[B)Z
            ifeq 15
        13: .line 471
            aload 0 /* this */
            aload 2 /* raw */
            aload 1 /* id */
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.checkPersonIdent:([BLorg/eclipse/jgit/lib/AnyObjectId;)V
        14: .line 472
            goto 16
        15: .line 473
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getstatic org.eclipse.jgit.lib.ObjectChecker$ErrorType.MISSING_AUTHOR:Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;
            aload 1 /* id */
            invokestatic org.eclipse.jgit.internal.JGitText.get:()Lorg/eclipse/jgit/internal/JGitText;
            getfield org.eclipse.jgit.internal.JGitText.corruptObjectNoAuthor:Ljava/lang/String;
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.report:(Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;Lorg/eclipse/jgit/lib/AnyObjectId;Ljava/lang/String;)V
        16: .line 476
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 2 /* raw */
            getstatic org.eclipse.jgit.lib.ObjectChecker.committer:[B
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.match:([B[B)Z
            ifeq 19
        17: .line 477
            aload 0 /* this */
            aload 2 /* raw */
            aload 1 /* id */
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.checkPersonIdent:([BLorg/eclipse/jgit/lib/AnyObjectId;)V
        18: .line 478
            goto 22
        19: .line 479
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getstatic org.eclipse.jgit.lib.ObjectChecker$ErrorType.MISSING_COMMITTER:Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;
            aload 1 /* id */
        20: .line 480
            invokestatic org.eclipse.jgit.internal.JGitText.get:()Lorg/eclipse/jgit/internal/JGitText;
            getfield org.eclipse.jgit.internal.JGitText.corruptObjectNoCommitter:Ljava/lang/String;
        21: .line 479
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.report:(Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;Lorg/eclipse/jgit/lib/AnyObjectId;Ljava/lang/String;)V
        22: .line 482
      StackMap locals:
      StackMap stack:
            return
        end local 2 // byte[] raw
        end local 1 // org.eclipse.jgit.lib.AnyObjectId id
        end local 0 // org.eclipse.jgit.lib.ObjectChecker this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   23     0  this  Lorg/eclipse/jgit/lib/ObjectChecker;
            0   23     1    id  Lorg/eclipse/jgit/lib/AnyObjectId;
            0   23     2   raw  [B
    Exceptions:
      throws org.eclipse.jgit.errors.CorruptObjectException
    RuntimeVisibleParameterAnnotations: 
      0:
        org.eclipse.jgit.annotations.Nullable()
      1:
    MethodParameters:
      Name  Flags
      id    
      raw   

  public void checkTag(byte[]);
    descriptor: ([B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.eclipse.jgit.lib.ObjectChecker this
        start local 1 // byte[] raw
         0: .line 493
            aload 0 /* this */
            aload 0 /* this */
            iconst_4
            aload 1 /* raw */
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.idFor:(I[B)Lorg/eclipse/jgit/lib/ObjectId;
            aload 1 /* raw */
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.checkTag:(Lorg/eclipse/jgit/lib/AnyObjectId;[B)V
         1: .line 494
            return
        end local 1 // byte[] raw
        end local 0 // org.eclipse.jgit.lib.ObjectChecker this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/jgit/lib/ObjectChecker;
            0    2     1   raw  [B
    Exceptions:
      throws org.eclipse.jgit.errors.CorruptObjectException
    MethodParameters:
      Name  Flags
      raw   

  public void checkTag(org.eclipse.jgit.lib.AnyObjectId, byte[]);
    descriptor: (Lorg/eclipse/jgit/lib/AnyObjectId;[B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.eclipse.jgit.lib.ObjectChecker this
        start local 1 // org.eclipse.jgit.lib.AnyObjectId id
        start local 2 // byte[] raw
         0: .line 509
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectChecker.bufPtr:Lorg/eclipse/jgit/util/MutableInteger;
            iconst_0
            putfield org.eclipse.jgit.util.MutableInteger.value:I
         1: .line 510
            aload 0 /* this */
            aload 2 /* raw */
            getstatic org.eclipse.jgit.lib.ObjectChecker.object:[B
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.match:([B[B)Z
            ifne 6
         2: .line 511
            aload 0 /* this */
            getstatic org.eclipse.jgit.lib.ObjectChecker$ErrorType.MISSING_OBJECT:Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;
            aload 1 /* id */
         3: .line 512
            invokestatic org.eclipse.jgit.internal.JGitText.get:()Lorg/eclipse/jgit/internal/JGitText;
            getfield org.eclipse.jgit.internal.JGitText.corruptObjectNoObjectHeader:Ljava/lang/String;
         4: .line 511
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.report:(Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;Lorg/eclipse/jgit/lib/AnyObjectId;Ljava/lang/String;)V
         5: .line 513
            goto 10
      StackMap locals:
      StackMap stack:
         6: aload 0 /* this */
            aload 2 /* raw */
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.checkId:([B)Z
            ifne 10
         7: .line 514
            aload 0 /* this */
            getstatic org.eclipse.jgit.lib.ObjectChecker$ErrorType.BAD_OBJECT_SHA1:Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;
            aload 1 /* id */
         8: .line 515
            invokestatic org.eclipse.jgit.internal.JGitText.get:()Lorg/eclipse/jgit/internal/JGitText;
            getfield org.eclipse.jgit.internal.JGitText.corruptObjectInvalidObject:Ljava/lang/String;
         9: .line 514
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.report:(Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;Lorg/eclipse/jgit/lib/AnyObjectId;Ljava/lang/String;)V
        10: .line 518
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 2 /* raw */
            getstatic org.eclipse.jgit.lib.ObjectChecker.type:[B
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.match:([B[B)Z
            ifne 14
        11: .line 519
            aload 0 /* this */
            getstatic org.eclipse.jgit.lib.ObjectChecker$ErrorType.MISSING_TYPE_ENTRY:Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;
            aload 1 /* id */
        12: .line 520
            invokestatic org.eclipse.jgit.internal.JGitText.get:()Lorg/eclipse/jgit/internal/JGitText;
            getfield org.eclipse.jgit.internal.JGitText.corruptObjectNoTypeHeader:Ljava/lang/String;
        13: .line 519
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.report:(Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;Lorg/eclipse/jgit/lib/AnyObjectId;Ljava/lang/String;)V
        14: .line 522
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectChecker.bufPtr:Lorg/eclipse/jgit/util/MutableInteger;
            aload 2 /* raw */
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectChecker.bufPtr:Lorg/eclipse/jgit/util/MutableInteger;
            getfield org.eclipse.jgit.util.MutableInteger.value:I
            invokestatic org.eclipse.jgit.util.RawParseUtils.nextLF:([BI)I
            putfield org.eclipse.jgit.util.MutableInteger.value:I
        15: .line 524
            aload 0 /* this */
            aload 2 /* raw */
            getstatic org.eclipse.jgit.lib.ObjectChecker.tag:[B
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.match:([B[B)Z
            ifne 19
        16: .line 525
            aload 0 /* this */
            getstatic org.eclipse.jgit.lib.ObjectChecker$ErrorType.MISSING_TAG_ENTRY:Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;
            aload 1 /* id */
        17: .line 526
            invokestatic org.eclipse.jgit.internal.JGitText.get:()Lorg/eclipse/jgit/internal/JGitText;
            getfield org.eclipse.jgit.internal.JGitText.corruptObjectNoTagHeader:Ljava/lang/String;
        18: .line 525
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.report:(Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;Lorg/eclipse/jgit/lib/AnyObjectId;Ljava/lang/String;)V
        19: .line 528
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectChecker.bufPtr:Lorg/eclipse/jgit/util/MutableInteger;
            aload 2 /* raw */
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectChecker.bufPtr:Lorg/eclipse/jgit/util/MutableInteger;
            getfield org.eclipse.jgit.util.MutableInteger.value:I
            invokestatic org.eclipse.jgit.util.RawParseUtils.nextLF:([BI)I
            putfield org.eclipse.jgit.util.MutableInteger.value:I
        20: .line 530
            aload 0 /* this */
            aload 2 /* raw */
            getstatic org.eclipse.jgit.lib.ObjectChecker.tagger:[B
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.match:([B[B)Z
            ifeq 22
        21: .line 531
            aload 0 /* this */
            aload 2 /* raw */
            aload 1 /* id */
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.checkPersonIdent:([BLorg/eclipse/jgit/lib/AnyObjectId;)V
        22: .line 533
      StackMap locals:
      StackMap stack:
            return
        end local 2 // byte[] raw
        end local 1 // org.eclipse.jgit.lib.AnyObjectId id
        end local 0 // org.eclipse.jgit.lib.ObjectChecker this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   23     0  this  Lorg/eclipse/jgit/lib/ObjectChecker;
            0   23     1    id  Lorg/eclipse/jgit/lib/AnyObjectId;
            0   23     2   raw  [B
    Exceptions:
      throws org.eclipse.jgit.errors.CorruptObjectException
    RuntimeVisibleParameterAnnotations: 
      0:
        org.eclipse.jgit.annotations.Nullable()
      1:
    MethodParameters:
      Name  Flags
      id    
      raw   

  private static boolean duplicateName(byte[], int, int);
    descriptor: ([BII)Z
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=7, locals=8, args_size=3
        start local 0 // byte[] raw
        start local 1 // int thisNamePos
        start local 2 // int thisNameEnd
         0: .line 537
            aload 0 /* raw */
            arraylength
            istore 3 /* sz */
        start local 3 // int sz
         1: .line 538
            iload 2 /* thisNameEnd */
            iconst_1
            iadd
            bipush 20
            iadd
            istore 4 /* nextPtr */
        start local 4 // int nextPtr
         2: .line 540
      StackMap locals: int int
      StackMap stack:
            iconst_0
            istore 5 /* nextMode */
        start local 5 // int nextMode
         3: .line 542
      StackMap locals: int
      StackMap stack:
            iload 4 /* nextPtr */
            iload 3 /* sz */
            if_icmplt 5
         4: .line 543
            iconst_0
            ireturn
         5: .line 544
      StackMap locals:
      StackMap stack:
            aload 0 /* raw */
            iload 4 /* nextPtr */
            iinc 4 /* nextPtr */ 1
            baload
            istore 6 /* c */
        start local 6 // byte c
         6: .line 545
            bipush 32
            iload 6 /* c */
            if_icmpne 8
         7: .line 546
            goto 11
         8: .line 547
      StackMap locals: int
      StackMap stack:
            iload 5 /* nextMode */
            iconst_3
            ishl
            istore 5 /* nextMode */
         9: .line 548
            iload 5 /* nextMode */
            iload 6 /* c */
            bipush 48
            isub
            iadd
            istore 5 /* nextMode */
        end local 6 // byte c
        10: .line 541
            goto 3
        11: .line 551
      StackMap locals:
      StackMap stack:
            iload 4 /* nextPtr */
            istore 6 /* nextNamePos */
        start local 6 // int nextNamePos
        12: .line 553
      StackMap locals: int
      StackMap stack:
            iload 4 /* nextPtr */
            iload 3 /* sz */
            if_icmpne 14
        13: .line 554
            iconst_0
            ireturn
        14: .line 555
      StackMap locals:
      StackMap stack:
            aload 0 /* raw */
            iload 4 /* nextPtr */
            iinc 4 /* nextPtr */ 1
            baload
            istore 7 /* c */
        start local 7 // byte c
        15: .line 556
            iload 7 /* c */
            ifne 12
        end local 7 // byte c
        16: .line 559
            iload 6 /* nextNamePos */
            iconst_1
            iadd
            iload 4 /* nextPtr */
            if_icmpne 18
        17: .line 560
            iconst_0
            ireturn
        18: .line 563
      StackMap locals:
      StackMap stack:
            aload 0 /* raw */
            iload 1 /* thisNamePos */
            iload 2 /* thisNameEnd */
        19: .line 564
            aload 0 /* raw */
            iload 6 /* nextNamePos */
            iload 4 /* nextPtr */
            iconst_1
            isub
            iload 5 /* nextMode */
        20: .line 562
            invokestatic org.eclipse.jgit.util.Paths.compareSameName:([BII[BIII)I
            istore 7 /* cmp */
        start local 7 // int cmp
        21: .line 565
            iload 7 /* cmp */
            ifge 23
        22: .line 566
            iconst_0
            ireturn
        23: .line 567
      StackMap locals: int
      StackMap stack:
            iload 7 /* cmp */
            ifne 25
        24: .line 568
            iconst_1
            ireturn
        25: .line 570
      StackMap locals:
      StackMap stack:
            iinc 4 /* nextPtr */ 20
        end local 7 // int cmp
        end local 6 // int nextNamePos
        end local 5 // int nextMode
        26: .line 539
            goto 2
        end local 4 // int nextPtr
        end local 3 // int sz
        end local 2 // int thisNameEnd
        end local 1 // int thisNamePos
        end local 0 // byte[] raw
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   27     0          raw  [B
            0   27     1  thisNamePos  I
            0   27     2  thisNameEnd  I
            1   27     3           sz  I
            2   27     4      nextPtr  I
            3   26     5     nextMode  I
            6   10     6            c  B
           12   26     6  nextNamePos  I
           15   16     7            c  B
           21   26     7          cmp  I
    MethodParameters:
             Name  Flags
      raw          final
      thisNamePos  final
      thisNameEnd  final

  public void checkTree(byte[]);
    descriptor: ([B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.eclipse.jgit.lib.ObjectChecker this
        start local 1 // byte[] raw
         0: .line 583
            aload 0 /* this */
            aload 0 /* this */
            iconst_2
            aload 1 /* raw */
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.idFor:(I[B)Lorg/eclipse/jgit/lib/ObjectId;
            aload 1 /* raw */
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.checkTree:(Lorg/eclipse/jgit/lib/AnyObjectId;[B)V
         1: .line 584
            return
        end local 1 // byte[] raw
        end local 0 // org.eclipse.jgit.lib.ObjectChecker this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/jgit/lib/ObjectChecker;
            0    2     1   raw  [B
    Exceptions:
      throws org.eclipse.jgit.errors.CorruptObjectException
    MethodParameters:
      Name  Flags
      raw   

  public void checkTree(org.eclipse.jgit.lib.AnyObjectId, byte[]);
    descriptor: (Lorg/eclipse/jgit/lib/AnyObjectId;[B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=8, locals=12, args_size=3
        start local 0 // org.eclipse.jgit.lib.ObjectChecker this
        start local 1 // org.eclipse.jgit.lib.AnyObjectId id
        start local 2 // byte[] raw
         0: .line 599
            aload 2 /* raw */
            arraylength
            istore 3 /* sz */
        start local 3 // int sz
         1: .line 600
            iconst_0
            istore 4 /* ptr */
        start local 4 // int ptr
         2: .line 601
            iconst_0
            istore 5 /* lastNameB */
        start local 5 // int lastNameB
         3: iconst_0
            istore 6 /* lastNameE */
        start local 6 // int lastNameE
         4: iconst_0
            istore 7 /* lastMode */
        start local 7 // int lastMode
         5: .line 602
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectChecker.windows:Z
            ifne 6
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectChecker.macosx:Z
            ifeq 7
         6: .line 603
      StackMap locals: org.eclipse.jgit.lib.ObjectChecker org.eclipse.jgit.lib.AnyObjectId byte[] int int int int int
      StackMap stack:
            new java.util.HashSet
            dup
            invokespecial java.util.HashSet.<init>:()V
            goto 8
         7: .line 604
      StackMap locals:
      StackMap stack:
            aconst_null
         8: .line 602
      StackMap locals:
      StackMap stack: java.util.HashSet
            astore 8 /* normalized */
        start local 8 // java.util.Set normalized
         9: .line 606
            goto 72
        10: .line 607
      StackMap locals: java.util.Set
      StackMap stack:
            iconst_0
            istore 9 /* thisMode */
        start local 9 // int thisMode
        11: .line 609
      StackMap locals: int
      StackMap stack:
            iload 4 /* ptr */
            iload 3 /* sz */
            if_icmpne 15
        12: .line 610
            new org.eclipse.jgit.errors.CorruptObjectException
            dup
        13: .line 611
            invokestatic org.eclipse.jgit.internal.JGitText.get:()Lorg/eclipse/jgit/internal/JGitText;
            getfield org.eclipse.jgit.internal.JGitText.corruptObjectTruncatedInMode:Ljava/lang/String;
        14: .line 610
            invokespecial org.eclipse.jgit.errors.CorruptObjectException.<init>:(Ljava/lang/String;)V
            athrow
        15: .line 613
      StackMap locals:
      StackMap stack:
            aload 2 /* raw */
            iload 4 /* ptr */
            iinc 4 /* ptr */ 1
            baload
            istore 10 /* c */
        start local 10 // byte c
        16: .line 614
            bipush 32
            iload 10 /* c */
            if_icmpne 18
        17: .line 615
            goto 29
        18: .line 616
      StackMap locals: int
      StackMap stack:
            iload 10 /* c */
            bipush 48
            if_icmplt 19
            iload 10 /* c */
            bipush 55
            if_icmple 22
        19: .line 617
      StackMap locals:
      StackMap stack:
            new org.eclipse.jgit.errors.CorruptObjectException
            dup
        20: .line 618
            invokestatic org.eclipse.jgit.internal.JGitText.get:()Lorg/eclipse/jgit/internal/JGitText;
            getfield org.eclipse.jgit.internal.JGitText.corruptObjectInvalidModeChar:Ljava/lang/String;
        21: .line 617
            invokespecial org.eclipse.jgit.errors.CorruptObjectException.<init>:(Ljava/lang/String;)V
            athrow
        22: .line 620
      StackMap locals:
      StackMap stack:
            iload 9 /* thisMode */
            ifne 26
            iload 10 /* c */
            bipush 48
            if_icmpne 26
        23: .line 621
            aload 0 /* this */
            getstatic org.eclipse.jgit.lib.ObjectChecker$ErrorType.ZERO_PADDED_FILEMODE:Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;
            aload 1 /* id */
        24: .line 622
            invokestatic org.eclipse.jgit.internal.JGitText.get:()Lorg/eclipse/jgit/internal/JGitText;
            getfield org.eclipse.jgit.internal.JGitText.corruptObjectInvalidModeStartsZero:Ljava/lang/String;
        25: .line 621
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.report:(Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;Lorg/eclipse/jgit/lib/AnyObjectId;Ljava/lang/String;)V
        26: .line 624
      StackMap locals:
      StackMap stack:
            iload 9 /* thisMode */
            iconst_3
            ishl
            istore 9 /* thisMode */
        27: .line 625
            iload 9 /* thisMode */
            iload 10 /* c */
            bipush 48
            isub
            iadd
            istore 9 /* thisMode */
        end local 10 // byte c
        28: .line 608
            goto 11
        29: .line 628
      StackMap locals:
      StackMap stack:
            iload 9 /* thisMode */
            invokestatic org.eclipse.jgit.lib.FileMode.fromBits:(I)Lorg/eclipse/jgit/lib/FileMode;
            invokevirtual org.eclipse.jgit.lib.FileMode.getObjectType:()I
            iconst_m1
            if_icmpne 34
        30: .line 629
            new org.eclipse.jgit.errors.CorruptObjectException
            dup
        31: .line 630
            invokestatic org.eclipse.jgit.internal.JGitText.get:()Lorg/eclipse/jgit/internal/JGitText;
            getfield org.eclipse.jgit.internal.JGitText.corruptObjectInvalidMode2:Ljava/lang/String;
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
        32: .line 631
            iload 9 /* thisMode */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
        33: .line 629
            invokestatic java.text.MessageFormat.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokespecial org.eclipse.jgit.errors.CorruptObjectException.<init>:(Ljava/lang/String;)V
            athrow
        34: .line 634
      StackMap locals:
      StackMap stack:
            iload 4 /* ptr */
            istore 10 /* thisNameB */
        start local 10 // int thisNameB
        35: .line 635
            aload 0 /* this */
            aload 2 /* raw */
            iload 4 /* ptr */
            iload 3 /* sz */
            aload 1 /* id */
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.scanPathSegment:([BIILorg/eclipse/jgit/lib/AnyObjectId;)I
            istore 4 /* ptr */
        36: .line 636
            iload 4 /* ptr */
            iload 3 /* sz */
            if_icmpeq 37
            aload 2 /* raw */
            iload 4 /* ptr */
            baload
            ifeq 40
        37: .line 637
      StackMap locals: int
      StackMap stack:
            new org.eclipse.jgit.errors.CorruptObjectException
            dup
        38: .line 638
            invokestatic org.eclipse.jgit.internal.JGitText.get:()Lorg/eclipse/jgit/internal/JGitText;
            getfield org.eclipse.jgit.internal.JGitText.corruptObjectTruncatedInName:Ljava/lang/String;
        39: .line 637
            invokespecial org.eclipse.jgit.errors.CorruptObjectException.<init>:(Ljava/lang/String;)V
            athrow
        40: .line 640
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 2 /* raw */
            iload 10 /* thisNameB */
            iload 4 /* ptr */
            aload 1 /* id */
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.checkPathSegment2:([BIILorg/eclipse/jgit/lib/AnyObjectId;)V
        41: .line 641
            aload 8 /* normalized */
            ifnull 47
        42: .line 642
            aload 8 /* normalized */
            aload 0 /* this */
            aload 2 /* raw */
            iload 10 /* thisNameB */
            iload 4 /* ptr */
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.normalize:([BII)Ljava/lang/String;
            invokeinterface java.util.Set.add:(Ljava/lang/Object;)Z
            ifne 51
        43: .line 643
            aload 0 /* this */
            getstatic org.eclipse.jgit.lib.ObjectChecker$ErrorType.DUPLICATE_ENTRIES:Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;
            aload 1 /* id */
        44: .line 644
            invokestatic org.eclipse.jgit.internal.JGitText.get:()Lorg/eclipse/jgit/internal/JGitText;
            getfield org.eclipse.jgit.internal.JGitText.corruptObjectDuplicateEntryNames:Ljava/lang/String;
        45: .line 643
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.report:(Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;Lorg/eclipse/jgit/lib/AnyObjectId;Ljava/lang/String;)V
        46: .line 646
            goto 51
      StackMap locals:
      StackMap stack:
        47: aload 2 /* raw */
            iload 10 /* thisNameB */
            iload 4 /* ptr */
            invokestatic org.eclipse.jgit.lib.ObjectChecker.duplicateName:([BII)Z
            ifeq 51
        48: .line 647
            aload 0 /* this */
            getstatic org.eclipse.jgit.lib.ObjectChecker$ErrorType.DUPLICATE_ENTRIES:Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;
            aload 1 /* id */
        49: .line 648
            invokestatic org.eclipse.jgit.internal.JGitText.get:()Lorg/eclipse/jgit/internal/JGitText;
            getfield org.eclipse.jgit.internal.JGitText.corruptObjectDuplicateEntryNames:Ljava/lang/String;
        50: .line 647
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.report:(Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;Lorg/eclipse/jgit/lib/AnyObjectId;Ljava/lang/String;)V
        51: .line 651
      StackMap locals:
      StackMap stack:
            iload 5 /* lastNameB */
            ifeq 59
        52: .line 653
            aload 2 /* raw */
            iload 5 /* lastNameB */
            iload 6 /* lastNameE */
            iload 7 /* lastMode */
        53: .line 654
            aload 2 /* raw */
            iload 10 /* thisNameB */
            iload 4 /* ptr */
            iload 9 /* thisMode */
        54: .line 652
            invokestatic org.eclipse.jgit.util.Paths.compare:([BIII[BIII)I
            istore 11 /* cmp */
        start local 11 // int cmp
        55: .line 655
            iload 11 /* cmp */
            ifle 59
        56: .line 656
            aload 0 /* this */
            getstatic org.eclipse.jgit.lib.ObjectChecker$ErrorType.TREE_NOT_SORTED:Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;
            aload 1 /* id */
        57: .line 657
            invokestatic org.eclipse.jgit.internal.JGitText.get:()Lorg/eclipse/jgit/internal/JGitText;
            getfield org.eclipse.jgit.internal.JGitText.corruptObjectIncorrectSorting:Ljava/lang/String;
        58: .line 656
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.report:(Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;Lorg/eclipse/jgit/lib/AnyObjectId;Ljava/lang/String;)V
        end local 11 // int cmp
        59: .line 661
      StackMap locals:
      StackMap stack:
            iload 10 /* thisNameB */
            istore 5 /* lastNameB */
        60: .line 662
            iload 4 /* ptr */
            istore 6 /* lastNameE */
        61: .line 663
            iload 9 /* thisMode */
            istore 7 /* lastMode */
        62: .line 665
            iinc 4 /* ptr */ 21
        63: .line 666
            iload 4 /* ptr */
            iload 3 /* sz */
            if_icmple 67
        64: .line 667
            new org.eclipse.jgit.errors.CorruptObjectException
            dup
        65: .line 668
            invokestatic org.eclipse.jgit.internal.JGitText.get:()Lorg/eclipse/jgit/internal/JGitText;
            getfield org.eclipse.jgit.internal.JGitText.corruptObjectTruncatedInObjectId:Ljava/lang/String;
        66: .line 667
            invokespecial org.eclipse.jgit.errors.CorruptObjectException.<init>:(Ljava/lang/String;)V
            athrow
        67: .line 671
      StackMap locals:
      StackMap stack:
            invokestatic org.eclipse.jgit.lib.ObjectId.zeroId:()Lorg/eclipse/jgit/lib/ObjectId;
            aload 2 /* raw */
            iload 4 /* ptr */
            bipush 20
            isub
            invokevirtual org.eclipse.jgit.lib.ObjectId.compareTo:([BI)I
            ifne 69
        68: .line 672
            aload 0 /* this */
            getstatic org.eclipse.jgit.lib.ObjectChecker$ErrorType.NULL_SHA1:Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;
            aload 1 /* id */
            invokestatic org.eclipse.jgit.internal.JGitText.get:()Lorg/eclipse/jgit/internal/JGitText;
            getfield org.eclipse.jgit.internal.JGitText.corruptObjectZeroId:Ljava/lang/String;
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.report:(Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;Lorg/eclipse/jgit/lib/AnyObjectId;Ljava/lang/String;)V
        69: .line 675
      StackMap locals:
      StackMap stack:
            aload 1 /* id */
            ifnull 72
            aload 0 /* this */
            aload 2 /* raw */
            iload 5 /* lastNameB */
            iload 6 /* lastNameE */
            aload 1 /* id */
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.isGitmodules:([BIILorg/eclipse/jgit/lib/AnyObjectId;)Z
            ifeq 72
        70: .line 676
            aload 2 /* raw */
            iload 4 /* ptr */
            bipush 20
            isub
            invokestatic org.eclipse.jgit.lib.ObjectId.fromRaw:([BI)Lorg/eclipse/jgit/lib/ObjectId;
            astore 11 /* blob */
        start local 11 // org.eclipse.jgit.lib.ObjectId blob
        71: .line 677
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectChecker.gitsubmodules:Ljava/util/List;
            new org.eclipse.jgit.lib.GitmoduleEntry
            dup
            aload 1 /* id */
            aload 11 /* blob */
            invokespecial org.eclipse.jgit.lib.GitmoduleEntry.<init>:(Lorg/eclipse/jgit/lib/AnyObjectId;Lorg/eclipse/jgit/lib/AnyObjectId;)V
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        end local 11 // org.eclipse.jgit.lib.ObjectId blob
        end local 10 // int thisNameB
        end local 9 // int thisMode
        72: .line 606
      StackMap locals:
      StackMap stack:
            iload 4 /* ptr */
            iload 3 /* sz */
            if_icmplt 10
        73: .line 680
            return
        end local 8 // java.util.Set normalized
        end local 7 // int lastMode
        end local 6 // int lastNameE
        end local 5 // int lastNameB
        end local 4 // int ptr
        end local 3 // int sz
        end local 2 // byte[] raw
        end local 1 // org.eclipse.jgit.lib.AnyObjectId id
        end local 0 // org.eclipse.jgit.lib.ObjectChecker this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   74     0        this  Lorg/eclipse/jgit/lib/ObjectChecker;
            0   74     1          id  Lorg/eclipse/jgit/lib/AnyObjectId;
            0   74     2         raw  [B
            1   74     3          sz  I
            2   74     4         ptr  I
            3   74     5   lastNameB  I
            4   74     6   lastNameE  I
            5   74     7    lastMode  I
            9   74     8  normalized  Ljava/util/Set<Ljava/lang/String;>;
           11   72     9    thisMode  I
           16   28    10           c  B
           35   72    10   thisNameB  I
           55   59    11         cmp  I
           71   72    11        blob  Lorg/eclipse/jgit/lib/ObjectId;
    Exceptions:
      throws org.eclipse.jgit.errors.CorruptObjectException
    RuntimeVisibleParameterAnnotations: 
      0:
        org.eclipse.jgit.annotations.Nullable()
      1:
    MethodParameters:
      Name  Flags
      id    
      raw   

  private int scanPathSegment(byte[], int, int, org.eclipse.jgit.lib.AnyObjectId);
    descriptor: ([BIILorg/eclipse/jgit/lib/AnyObjectId;)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=8, locals=6, args_size=5
        start local 0 // org.eclipse.jgit.lib.ObjectChecker this
        start local 1 // byte[] raw
        start local 2 // int ptr
        start local 3 // int end
        start local 4 // org.eclipse.jgit.lib.AnyObjectId id
         0: .line 684
            goto 19
         1: .line 685
      StackMap locals:
      StackMap stack:
            aload 1 /* raw */
            iload 2 /* ptr */
            baload
            istore 5 /* c */
        start local 5 // byte c
         2: .line 686
            iload 5 /* c */
            ifne 4
         3: .line 687
            iload 2 /* ptr */
            ireturn
         4: .line 689
      StackMap locals: int
      StackMap stack:
            iload 5 /* c */
            bipush 47
            if_icmpne 8
         5: .line 690
            aload 0 /* this */
            getstatic org.eclipse.jgit.lib.ObjectChecker$ErrorType.FULL_PATHNAME:Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;
            aload 4 /* id */
         6: .line 691
            invokestatic org.eclipse.jgit.internal.JGitText.get:()Lorg/eclipse/jgit/internal/JGitText;
            getfield org.eclipse.jgit.internal.JGitText.corruptObjectNameContainsSlash:Ljava/lang/String;
         7: .line 690
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.report:(Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;Lorg/eclipse/jgit/lib/AnyObjectId;Ljava/lang/String;)V
         8: .line 693
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectChecker.windows:Z
            ifeq 18
            iload 5 /* c */
            invokestatic org.eclipse.jgit.lib.ObjectChecker.isInvalidOnWindows:(B)Z
            ifeq 18
         9: .line 694
            iload 5 /* c */
            bipush 31
            if_icmple 14
        10: .line 695
            new org.eclipse.jgit.errors.CorruptObjectException
            dup
        11: .line 696
            invokestatic org.eclipse.jgit.internal.JGitText.get:()Lorg/eclipse/jgit/internal/JGitText;
            getfield org.eclipse.jgit.internal.JGitText.corruptObjectNameContainsChar:Ljava/lang/String;
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
        12: .line 697
            iload 5 /* c */
            invokestatic java.lang.Byte.valueOf:(B)Ljava/lang/Byte;
            aastore
        13: .line 695
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokespecial org.eclipse.jgit.errors.CorruptObjectException.<init>:(Ljava/lang/String;)V
            athrow
        14: .line 699
      StackMap locals:
      StackMap stack:
            new org.eclipse.jgit.errors.CorruptObjectException
            dup
        15: .line 700
            invokestatic org.eclipse.jgit.internal.JGitText.get:()Lorg/eclipse/jgit/internal/JGitText;
            getfield org.eclipse.jgit.internal.JGitText.corruptObjectNameContainsByte:Ljava/lang/String;
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
        16: .line 701
            iload 5 /* c */
            sipush 255
            iand
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
        17: .line 699
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokespecial org.eclipse.jgit.errors.CorruptObjectException.<init>:(Ljava/lang/String;)V
            athrow
        end local 5 // byte c
        18: .line 684
      StackMap locals:
      StackMap stack:
            iinc 2 /* ptr */ 1
      StackMap locals:
      StackMap stack:
        19: iload 2 /* ptr */
            iload 3 /* end */
            if_icmplt 1
        20: .line 704
            iload 2 /* ptr */
            ireturn
        end local 4 // org.eclipse.jgit.lib.AnyObjectId id
        end local 3 // int end
        end local 2 // int ptr
        end local 1 // byte[] raw
        end local 0 // org.eclipse.jgit.lib.ObjectChecker this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   21     0  this  Lorg/eclipse/jgit/lib/ObjectChecker;
            0   21     1   raw  [B
            0   21     2   ptr  I
            0   21     3   end  I
            0   21     4    id  Lorg/eclipse/jgit/lib/AnyObjectId;
            2   18     5     c  B
    Exceptions:
      throws org.eclipse.jgit.errors.CorruptObjectException
    RuntimeVisibleParameterAnnotations: 
      0:
      1:
      2:
      3:
        org.eclipse.jgit.annotations.Nullable()
    MethodParameters:
      Name  Flags
      raw   
      ptr   
      end   
      id    

  private org.eclipse.jgit.lib.ObjectId idFor(int, byte[]);
    descriptor: (I[B)Lorg/eclipse/jgit/lib/ObjectId;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=6, args_size=3
        start local 0 // org.eclipse.jgit.lib.ObjectChecker this
        start local 1 // int objType
        start local 2 // byte[] raw
         0: .line 709
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectChecker.skipList:Lorg/eclipse/jgit/lib/ObjectIdSet;
            ifnull 12
         1: .line 710
            aconst_null
            astore 3
            aconst_null
            astore 4
         2: new org.eclipse.jgit.lib.ObjectInserter$Formatter
            dup
            invokespecial org.eclipse.jgit.lib.ObjectInserter$Formatter.<init>:()V
            astore 5 /* fmt */
        start local 5 // org.eclipse.jgit.lib.ObjectInserter$Formatter fmt
         3: .line 711
            aload 5 /* fmt */
            iload 1 /* objType */
            aload 2 /* raw */
            invokevirtual org.eclipse.jgit.lib.ObjectInserter$Formatter.idFor:(I[B)Lorg/eclipse/jgit/lib/ObjectId;
         4: .line 712
            aload 5 /* fmt */
            ifnull 5
            aload 5 /* fmt */
            invokevirtual org.eclipse.jgit.lib.ObjectInserter$Formatter.close:()V
         5: .line 711
      StackMap locals: org.eclipse.jgit.lib.ObjectChecker int byte[] java.lang.Throwable java.lang.Throwable org.eclipse.jgit.lib.ObjectInserter$Formatter
      StackMap stack: org.eclipse.jgit.lib.ObjectId
            areturn
      StackMap locals:
      StackMap stack: java.lang.Throwable
         6: astore 3
         7: .line 712
            aload 5 /* fmt */
            ifnull 8
            aload 5 /* fmt */
            invokevirtual org.eclipse.jgit.lib.ObjectInserter$Formatter.close:()V
        end local 5 // org.eclipse.jgit.lib.ObjectInserter$Formatter fmt
      StackMap locals:
      StackMap stack:
         8: aload 3
            athrow
      StackMap locals:
      StackMap stack: java.lang.Throwable
         9: astore 4
            aload 3
            ifnonnull 10
            aload 4
            astore 3
            goto 11
      StackMap locals:
      StackMap stack:
        10: aload 3
            aload 4
            if_acmpeq 11
            aload 3
            aload 4
            invokevirtual java.lang.Throwable.addSuppressed:(Ljava/lang/Throwable;)V
      StackMap locals:
      StackMap stack:
        11: aload 3
            athrow
        12: .line 714
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 2 // byte[] raw
        end local 1 // int objType
        end local 0 // org.eclipse.jgit.lib.ObjectChecker this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   13     0     this  Lorg/eclipse/jgit/lib/ObjectChecker;
            0   13     1  objType  I
            0   13     2      raw  [B
            3    8     5      fmt  Lorg/eclipse/jgit/lib/ObjectInserter$Formatter;
      Exception table:
        from    to  target  type
           3     4       6  any
           2     5       9  any
           6     9       9  any
    RuntimeVisibleAnnotations: 
      org.eclipse.jgit.annotations.Nullable()
    MethodParameters:
         Name  Flags
      objType  
      raw      

  private void report(org.eclipse.jgit.lib.ObjectChecker$ErrorType, org.eclipse.jgit.lib.AnyObjectId, java.lang.String);
    descriptor: (Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;Lorg/eclipse/jgit/lib/AnyObjectId;Ljava/lang/String;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // org.eclipse.jgit.lib.ObjectChecker this
        start local 1 // org.eclipse.jgit.lib.ObjectChecker$ErrorType err
        start local 2 // org.eclipse.jgit.lib.AnyObjectId id
        start local 3 // java.lang.String why
         0: .line 719
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectChecker.errors:Ljava/util/EnumSet;
            aload 1 /* err */
            invokevirtual java.util.EnumSet.contains:(Ljava/lang/Object;)Z
            ifeq 5
         1: .line 720
            aload 2 /* id */
            ifnull 2
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectChecker.skipList:Lorg/eclipse/jgit/lib/ObjectIdSet;
            ifnull 2
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectChecker.skipList:Lorg/eclipse/jgit/lib/ObjectIdSet;
            aload 2 /* id */
            invokeinterface org.eclipse.jgit.lib.ObjectIdSet.contains:(Lorg/eclipse/jgit/lib/AnyObjectId;)Z
            ifne 5
         2: .line 721
      StackMap locals:
      StackMap stack:
            aload 2 /* id */
            ifnull 4
         3: .line 722
            new org.eclipse.jgit.errors.CorruptObjectException
            dup
            aload 1 /* err */
            aload 2 /* id */
            aload 3 /* why */
            invokespecial org.eclipse.jgit.errors.CorruptObjectException.<init>:(Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;Lorg/eclipse/jgit/lib/AnyObjectId;Ljava/lang/String;)V
            athrow
         4: .line 724
      StackMap locals:
      StackMap stack:
            new org.eclipse.jgit.errors.CorruptObjectException
            dup
            aload 3 /* why */
            invokespecial org.eclipse.jgit.errors.CorruptObjectException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 726
      StackMap locals:
      StackMap stack:
            return
        end local 3 // java.lang.String why
        end local 2 // org.eclipse.jgit.lib.AnyObjectId id
        end local 1 // org.eclipse.jgit.lib.ObjectChecker$ErrorType err
        end local 0 // org.eclipse.jgit.lib.ObjectChecker this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/eclipse/jgit/lib/ObjectChecker;
            0    6     1   err  Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;
            0    6     2    id  Lorg/eclipse/jgit/lib/AnyObjectId;
            0    6     3   why  Ljava/lang/String;
    Exceptions:
      throws org.eclipse.jgit.errors.CorruptObjectException
    RuntimeVisibleParameterAnnotations: 
      0:
      1:
        org.eclipse.jgit.annotations.Nullable()
      2:
    RuntimeInvisibleParameterAnnotations: 
      0:
        org.eclipse.jgit.annotations.NonNull()
      1:
      2:
    MethodParameters:
      Name  Flags
      err   
      id    
      why   

  public void checkPath(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.eclipse.jgit.lib.ObjectChecker this
        start local 1 // java.lang.String path
         0: .line 741
            aload 1 /* path */
            invokestatic org.eclipse.jgit.lib.Constants.encode:(Ljava/lang/String;)[B
            astore 2 /* buf */
        start local 2 // byte[] buf
         1: .line 742
            aload 0 /* this */
            aload 2 /* buf */
            iconst_0
            aload 2 /* buf */
            arraylength
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.checkPath:([BII)V
         2: .line 743
            return
        end local 2 // byte[] buf
        end local 1 // java.lang.String path
        end local 0 // org.eclipse.jgit.lib.ObjectChecker this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/jgit/lib/ObjectChecker;
            0    3     1  path  Ljava/lang/String;
            1    3     2   buf  [B
    Exceptions:
      throws org.eclipse.jgit.errors.CorruptObjectException
    MethodParameters:
      Name  Flags
      path  

  public void checkPath(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // org.eclipse.jgit.lib.ObjectChecker this
        start local 1 // byte[] raw
        start local 2 // int ptr
        start local 3 // int end
         0: .line 763
            iload 2 /* ptr */
            istore 4 /* start */
        start local 4 // int start
         1: .line 764
            goto 6
         2: .line 765
      StackMap locals: int
      StackMap stack:
            aload 1 /* raw */
            iload 2 /* ptr */
            baload
            bipush 47
            if_icmpne 5
         3: .line 766
            aload 0 /* this */
            aload 1 /* raw */
            iload 4 /* start */
            iload 2 /* ptr */
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.checkPathSegment:([BII)V
         4: .line 767
            iload 2 /* ptr */
            iconst_1
            iadd
            istore 4 /* start */
         5: .line 764
      StackMap locals:
      StackMap stack:
            iinc 2 /* ptr */ 1
      StackMap locals:
      StackMap stack:
         6: iload 2 /* ptr */
            iload 3 /* end */
            if_icmplt 2
         7: .line 770
            aload 0 /* this */
            aload 1 /* raw */
            iload 4 /* start */
            iload 3 /* end */
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.checkPathSegment:([BII)V
         8: .line 771
            return
        end local 4 // int start
        end local 3 // int end
        end local 2 // int ptr
        end local 1 // byte[] raw
        end local 0 // org.eclipse.jgit.lib.ObjectChecker this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    9     0   this  Lorg/eclipse/jgit/lib/ObjectChecker;
            0    9     1    raw  [B
            0    9     2    ptr  I
            0    9     3    end  I
            1    9     4  start  I
    Exceptions:
      throws org.eclipse.jgit.errors.CorruptObjectException
    MethodParameters:
      Name  Flags
      raw   
      ptr   
      end   

  public void checkPathSegment(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=4
        start local 0 // org.eclipse.jgit.lib.ObjectChecker this
        start local 1 // byte[] raw
        start local 2 // int ptr
        start local 3 // int end
         0: .line 788
            aload 0 /* this */
            aload 1 /* raw */
            iload 2 /* ptr */
            iload 3 /* end */
            aconst_null
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.scanPathSegment:([BIILorg/eclipse/jgit/lib/AnyObjectId;)I
            istore 4 /* e */
        start local 4 // int e
         1: .line 789
            iload 4 /* e */
            iload 3 /* end */
            if_icmpge 5
            aload 1 /* raw */
            iload 4 /* e */
            baload
            ifne 5
         2: .line 790
            new org.eclipse.jgit.errors.CorruptObjectException
            dup
         3: .line 791
            invokestatic org.eclipse.jgit.internal.JGitText.get:()Lorg/eclipse/jgit/internal/JGitText;
            getfield org.eclipse.jgit.internal.JGitText.corruptObjectNameContainsNullByte:Ljava/lang/String;
         4: .line 790
            invokespecial org.eclipse.jgit.errors.CorruptObjectException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 792
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            aload 1 /* raw */
            iload 2 /* ptr */
            iload 3 /* end */
            aconst_null
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.checkPathSegment2:([BIILorg/eclipse/jgit/lib/AnyObjectId;)V
         6: .line 793
            return
        end local 4 // int e
        end local 3 // int end
        end local 2 // int ptr
        end local 1 // byte[] raw
        end local 0 // org.eclipse.jgit.lib.ObjectChecker this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/eclipse/jgit/lib/ObjectChecker;
            0    7     1   raw  [B
            0    7     2   ptr  I
            0    7     3   end  I
            1    7     4     e  I
    Exceptions:
      throws org.eclipse.jgit.errors.CorruptObjectException
    MethodParameters:
      Name  Flags
      raw   
      ptr   
      end   

  private void checkPathSegment2(byte[], int, int, org.eclipse.jgit.lib.AnyObjectId);
    descriptor: ([BIILorg/eclipse/jgit/lib/AnyObjectId;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=10, locals=5, args_size=5
        start local 0 // org.eclipse.jgit.lib.ObjectChecker this
        start local 1 // byte[] raw
        start local 2 // int ptr
        start local 3 // int end
        start local 4 // org.eclipse.jgit.lib.AnyObjectId id
         0: .line 797
            iload 2 /* ptr */
            iload 3 /* end */
            if_icmpne 3
         1: .line 798
            aload 0 /* this */
            getstatic org.eclipse.jgit.lib.ObjectChecker$ErrorType.EMPTY_NAME:Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;
            aload 4 /* id */
            invokestatic org.eclipse.jgit.internal.JGitText.get:()Lorg/eclipse/jgit/internal/JGitText;
            getfield org.eclipse.jgit.internal.JGitText.corruptObjectNameZeroLength:Ljava/lang/String;
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.report:(Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;Lorg/eclipse/jgit/lib/AnyObjectId;Ljava/lang/String;)V
         2: .line 799
            return
         3: .line 802
      StackMap locals:
      StackMap stack:
            aload 1 /* raw */
            iload 2 /* ptr */
            baload
            bipush 46
            if_icmpne 24
         4: .line 803
            iload 3 /* end */
            iload 2 /* ptr */
            isub
            tableswitch { // 1 - 4
                    1: 5
                    2: 7
                    3: 18
                    4: 12
              default: 18
          }
         5: .line 805
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getstatic org.eclipse.jgit.lib.ObjectChecker$ErrorType.HAS_DOT:Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;
            aload 4 /* id */
            invokestatic org.eclipse.jgit.internal.JGitText.get:()Lorg/eclipse/jgit/internal/JGitText;
            getfield org.eclipse.jgit.internal.JGitText.corruptObjectNameDot:Ljava/lang/String;
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.report:(Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;Lorg/eclipse/jgit/lib/AnyObjectId;Ljava/lang/String;)V
         6: .line 806
            goto 29
         7: .line 808
      StackMap locals:
      StackMap stack:
            aload 1 /* raw */
            iload 2 /* ptr */
            iconst_1
            iadd
            baload
            bipush 46
            if_icmpne 29
         8: .line 809
            aload 0 /* this */
            getstatic org.eclipse.jgit.lib.ObjectChecker$ErrorType.HAS_DOTDOT:Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;
            aload 4 /* id */
         9: .line 810
            invokestatic org.eclipse.jgit.internal.JGitText.get:()Lorg/eclipse/jgit/internal/JGitText;
            getfield org.eclipse.jgit.internal.JGitText.corruptObjectNameDotDot:Ljava/lang/String;
        10: .line 809
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.report:(Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;Lorg/eclipse/jgit/lib/AnyObjectId;Ljava/lang/String;)V
        11: .line 812
            goto 29
        12: .line 814
      StackMap locals:
      StackMap stack:
            aload 1 /* raw */
            iload 2 /* ptr */
            iconst_1
            iadd
            invokestatic org.eclipse.jgit.lib.ObjectChecker.isGit:([BI)Z
            ifeq 29
        13: .line 815
            aload 0 /* this */
            getstatic org.eclipse.jgit.lib.ObjectChecker$ErrorType.HAS_DOTGIT:Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;
            aload 4 /* id */
        14: .line 816
            invokestatic org.eclipse.jgit.internal.JGitText.get:()Lorg/eclipse/jgit/internal/JGitText;
            getfield org.eclipse.jgit.internal.JGitText.corruptObjectInvalidName:Ljava/lang/String;
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
        15: .line 817
            aload 1 /* raw */
            iload 2 /* ptr */
            iload 3 /* end */
            invokestatic org.eclipse.jgit.util.RawParseUtils.decode:([BII)Ljava/lang/String;
            aastore
        16: .line 815
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.report:(Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;Lorg/eclipse/jgit/lib/AnyObjectId;Ljava/lang/String;)V
        17: .line 819
            goto 29
        18: .line 821
      StackMap locals:
      StackMap stack:
            iload 3 /* end */
            iload 2 /* ptr */
            isub
            iconst_4
            if_icmple 29
            aload 1 /* raw */
            iload 2 /* ptr */
            iconst_1
            iadd
            iload 3 /* end */
            invokestatic org.eclipse.jgit.lib.ObjectChecker.isNormalizedGit:([BII)Z
            ifeq 29
        19: .line 822
            aload 0 /* this */
            getstatic org.eclipse.jgit.lib.ObjectChecker$ErrorType.HAS_DOTGIT:Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;
            aload 4 /* id */
        20: .line 823
            invokestatic org.eclipse.jgit.internal.JGitText.get:()Lorg/eclipse/jgit/internal/JGitText;
            getfield org.eclipse.jgit.internal.JGitText.corruptObjectInvalidName:Ljava/lang/String;
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
        21: .line 824
            aload 1 /* raw */
            iload 2 /* ptr */
            iload 3 /* end */
            invokestatic org.eclipse.jgit.util.RawParseUtils.decode:([BII)Ljava/lang/String;
            aastore
        22: .line 822
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.report:(Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;Lorg/eclipse/jgit/lib/AnyObjectId;Ljava/lang/String;)V
        23: .line 827
            goto 29
      StackMap locals:
      StackMap stack:
        24: aload 1 /* raw */
            iload 2 /* ptr */
            iload 3 /* end */
            invokestatic org.eclipse.jgit.lib.ObjectChecker.isGitTilde1:([BII)Z
            ifeq 29
        25: .line 828
            aload 0 /* this */
            getstatic org.eclipse.jgit.lib.ObjectChecker$ErrorType.HAS_DOTGIT:Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;
            aload 4 /* id */
        26: .line 829
            invokestatic org.eclipse.jgit.internal.JGitText.get:()Lorg/eclipse/jgit/internal/JGitText;
            getfield org.eclipse.jgit.internal.JGitText.corruptObjectInvalidName:Ljava/lang/String;
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
        27: .line 830
            aload 1 /* raw */
            iload 2 /* ptr */
            iload 3 /* end */
            invokestatic org.eclipse.jgit.util.RawParseUtils.decode:([BII)Ljava/lang/String;
            aastore
        28: .line 828
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.report:(Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;Lorg/eclipse/jgit/lib/AnyObjectId;Ljava/lang/String;)V
        29: .line 832
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectChecker.macosx:Z
            ifeq 34
            aload 0 /* this */
            aload 1 /* raw */
            iload 2 /* ptr */
            iload 3 /* end */
            aload 4 /* id */
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.isMacHFSGit:([BIILorg/eclipse/jgit/lib/AnyObjectId;)Z
            ifeq 34
        30: .line 833
            aload 0 /* this */
            getstatic org.eclipse.jgit.lib.ObjectChecker$ErrorType.HAS_DOTGIT:Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;
            aload 4 /* id */
        31: .line 834
            invokestatic org.eclipse.jgit.internal.JGitText.get:()Lorg/eclipse/jgit/internal/JGitText;
            getfield org.eclipse.jgit.internal.JGitText.corruptObjectInvalidNameIgnorableUnicode:Ljava/lang/String;
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
        32: .line 835
            aload 1 /* raw */
            iload 2 /* ptr */
            iload 3 /* end */
            invokestatic org.eclipse.jgit.util.RawParseUtils.decode:([BII)Ljava/lang/String;
            aastore
        33: .line 833
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.report:(Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;Lorg/eclipse/jgit/lib/AnyObjectId;Ljava/lang/String;)V
        34: .line 838
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectChecker.windows:Z
            ifeq 42
        35: .line 840
            aload 1 /* raw */
            iload 3 /* end */
            iconst_1
            isub
            baload
            bipush 32
            if_icmpeq 36
            aload 1 /* raw */
            iload 3 /* end */
            iconst_1
            isub
            baload
            bipush 46
            if_icmpne 40
        36: .line 841
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getstatic org.eclipse.jgit.lib.ObjectChecker$ErrorType.WIN32_BAD_NAME:Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;
            aload 4 /* id */
        37: .line 842
            invokestatic org.eclipse.jgit.internal.JGitText.get:()Lorg/eclipse/jgit/internal/JGitText;
            getfield org.eclipse.jgit.internal.JGitText.corruptObjectInvalidNameEnd:Ljava/lang/String;
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
        38: .line 843
            aload 1 /* raw */
            iload 3 /* end */
            iconst_1
            isub
            baload
            i2c
            invokestatic java.lang.Character.valueOf:(C)Ljava/lang/Character;
            aastore
        39: .line 841
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.report:(Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;Lorg/eclipse/jgit/lib/AnyObjectId;Ljava/lang/String;)V
        40: .line 845
      StackMap locals:
      StackMap stack:
            iload 3 /* end */
            iload 2 /* ptr */
            isub
            iconst_3
            if_icmplt 42
        41: .line 846
            aload 0 /* this */
            aload 1 /* raw */
            iload 2 /* ptr */
            iload 3 /* end */
            aload 4 /* id */
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.checkNotWindowsDevice:([BIILorg/eclipse/jgit/lib/AnyObjectId;)V
        42: .line 849
      StackMap locals:
      StackMap stack:
            return
        end local 4 // org.eclipse.jgit.lib.AnyObjectId id
        end local 3 // int end
        end local 2 // int ptr
        end local 1 // byte[] raw
        end local 0 // org.eclipse.jgit.lib.ObjectChecker this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   43     0  this  Lorg/eclipse/jgit/lib/ObjectChecker;
            0   43     1   raw  [B
            0   43     2   ptr  I
            0   43     3   end  I
            0   43     4    id  Lorg/eclipse/jgit/lib/AnyObjectId;
    Exceptions:
      throws org.eclipse.jgit.errors.CorruptObjectException
    RuntimeVisibleParameterAnnotations: 
      0:
      1:
      2:
      3:
        org.eclipse.jgit.annotations.Nullable()
    MethodParameters:
      Name  Flags
      raw   
      ptr   
      end   
      id    

  private boolean isMacHFSPath(byte[], int, int, byte[], org.eclipse.jgit.lib.AnyObjectId);
    descriptor: ([BII[BLorg/eclipse/jgit/lib/AnyObjectId;)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=8, args_size=6
        start local 0 // org.eclipse.jgit.lib.ObjectChecker this
        start local 1 // byte[] raw
        start local 2 // int ptr
        start local 3 // int end
        start local 4 // byte[] path
        start local 5 // org.eclipse.jgit.lib.AnyObjectId id
         0: .line 855
            iconst_0
            istore 6 /* ignorable */
        start local 6 // boolean ignorable
         1: .line 856
            iconst_0
            istore 7 /* g */
        start local 7 // int g
         2: .line 857
            goto 30
         3: .line 858
      StackMap locals: int int
      StackMap stack:
            aload 1 /* raw */
            iload 2 /* ptr */
            baload
            lookupswitch { // 2
                  -30: 4
                  -17: 18
              default: 26
          }
         4: .line 860
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* raw */
            iload 2 /* ptr */
            iload 3 /* end */
            aload 5 /* id */
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.checkTruncatedIgnorableUTF8:([BIILorg/eclipse/jgit/lib/AnyObjectId;)Z
            ifne 6
         5: .line 861
            iconst_0
            ireturn
         6: .line 863
      StackMap locals:
      StackMap stack:
            aload 1 /* raw */
            iload 2 /* ptr */
            iconst_1
            iadd
            baload
            tableswitch { // -128 - -127
                 -128: 7
                 -127: 12
              default: 17
          }
         7: .line 865
      StackMap locals:
      StackMap stack:
            aload 1 /* raw */
            iload 2 /* ptr */
            iconst_2
            iadd
            baload
            lookupswitch { // 9
                 -116: 8
                 -115: 8
                 -114: 8
                 -113: 8
                  -86: 8
                  -85: 8
                  -84: 8
                  -83: 8
                  -82: 8
              default: 11
          }
         8: .line 875
      StackMap locals:
      StackMap stack:
            iconst_1
            istore 6 /* ignorable */
         9: .line 876
            iinc 2 /* ptr */ 3
        10: .line 877
            goto 30
        11: .line 879
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        12: .line 882
      StackMap locals:
      StackMap stack:
            aload 1 /* raw */
            iload 2 /* ptr */
            iconst_2
            iadd
            baload
            tableswitch { // -86 - -81
                  -86: 13
                  -85: 13
                  -84: 13
                  -83: 13
                  -82: 13
                  -81: 13
              default: 16
          }
        13: .line 889
      StackMap locals:
      StackMap stack:
            iconst_1
            istore 6 /* ignorable */
        14: .line 890
            iinc 2 /* ptr */ 3
        15: .line 891
            goto 30
        16: .line 893
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        17: .line 896
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        18: .line 899
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* raw */
            iload 2 /* ptr */
            iload 3 /* end */
            aload 5 /* id */
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.checkTruncatedIgnorableUTF8:([BIILorg/eclipse/jgit/lib/AnyObjectId;)Z
            ifne 20
        19: .line 900
            iconst_0
            ireturn
        20: .line 903
      StackMap locals:
      StackMap stack:
            aload 1 /* raw */
            iload 2 /* ptr */
            iconst_1
            iadd
            baload
            bipush -69
            if_icmpne 25
        21: .line 904
            aload 1 /* raw */
            iload 2 /* ptr */
            iconst_2
            iadd
            baload
            bipush -65
            if_icmpne 25
        22: .line 905
            iconst_1
            istore 6 /* ignorable */
        23: .line 906
            iinc 2 /* ptr */ 3
        24: .line 907
            goto 30
        25: .line 909
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        26: .line 911
      StackMap locals:
      StackMap stack:
            iload 7 /* g */
            aload 4 /* path */
            arraylength
            if_icmpne 28
        27: .line 912
            iconst_0
            ireturn
        28: .line 914
      StackMap locals:
      StackMap stack:
            aload 1 /* raw */
            iload 2 /* ptr */
            iinc 2 /* ptr */ 1
            baload
            invokestatic org.eclipse.jgit.lib.ObjectChecker.toLower:(B)C
            aload 4 /* path */
            iload 7 /* g */
            iinc 7 /* g */ 1
            baload
            if_icmpeq 30
        29: .line 915
            iconst_0
            ireturn
        30: .line 857
      StackMap locals:
      StackMap stack:
            iload 2 /* ptr */
            iload 3 /* end */
            if_icmplt 3
        31: .line 919
            iload 7 /* g */
            aload 4 /* path */
            arraylength
            if_icmpne 33
            iload 6 /* ignorable */
            ifeq 33
        32: .line 920
            iconst_1
            ireturn
        33: .line 922
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 7 // int g
        end local 6 // boolean ignorable
        end local 5 // org.eclipse.jgit.lib.AnyObjectId id
        end local 4 // byte[] path
        end local 3 // int end
        end local 2 // int ptr
        end local 1 // byte[] raw
        end local 0 // org.eclipse.jgit.lib.ObjectChecker this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   34     0       this  Lorg/eclipse/jgit/lib/ObjectChecker;
            0   34     1        raw  [B
            0   34     2        ptr  I
            0   34     3        end  I
            0   34     4       path  [B
            0   34     5         id  Lorg/eclipse/jgit/lib/AnyObjectId;
            1   34     6  ignorable  Z
            2   34     7          g  I
    Exceptions:
      throws org.eclipse.jgit.errors.CorruptObjectException
    RuntimeVisibleParameterAnnotations: 
      0:
      1:
      2:
      3:
      4:
        org.eclipse.jgit.annotations.Nullable()
    MethodParameters:
      Name  Flags
      raw   
      ptr   
      end   
      path  
      id    

  private boolean isMacHFSGit(byte[], int, int, org.eclipse.jgit.lib.AnyObjectId);
    descriptor: ([BIILorg/eclipse/jgit/lib/AnyObjectId;)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=6, args_size=5
        start local 0 // org.eclipse.jgit.lib.ObjectChecker this
        start local 1 // byte[] raw
        start local 2 // int ptr
        start local 3 // int end
        start local 4 // org.eclipse.jgit.lib.AnyObjectId id
         0: .line 927
            iconst_4
            newarray 8
            dup
            iconst_0
            bipush 46
            bastore
            dup
            iconst_1
            bipush 103
            bastore
            dup
            iconst_2
            bipush 105
            bastore
            dup
            iconst_3
            bipush 116
            bastore
            astore 5 /* git */
        start local 5 // byte[] git
         1: .line 928
            aload 0 /* this */
            aload 1 /* raw */
            iload 2 /* ptr */
            iload 3 /* end */
            aload 5 /* git */
            aload 4 /* id */
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.isMacHFSPath:([BII[BLorg/eclipse/jgit/lib/AnyObjectId;)Z
            ireturn
        end local 5 // byte[] git
        end local 4 // org.eclipse.jgit.lib.AnyObjectId id
        end local 3 // int end
        end local 2 // int ptr
        end local 1 // byte[] raw
        end local 0 // org.eclipse.jgit.lib.ObjectChecker this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/jgit/lib/ObjectChecker;
            0    2     1   raw  [B
            0    2     2   ptr  I
            0    2     3   end  I
            0    2     4    id  Lorg/eclipse/jgit/lib/AnyObjectId;
            1    2     5   git  [B
    Exceptions:
      throws org.eclipse.jgit.errors.CorruptObjectException
    RuntimeVisibleParameterAnnotations: 
      0:
      1:
      2:
      3:
        org.eclipse.jgit.annotations.Nullable()
    MethodParameters:
      Name  Flags
      raw   
      ptr   
      end   
      id    

  private boolean isMacHFSGitmodules(byte[], int, int, org.eclipse.jgit.lib.AnyObjectId);
    descriptor: ([BIILorg/eclipse/jgit/lib/AnyObjectId;)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=5, args_size=5
        start local 0 // org.eclipse.jgit.lib.ObjectChecker this
        start local 1 // byte[] raw
        start local 2 // int ptr
        start local 3 // int end
        start local 4 // org.eclipse.jgit.lib.AnyObjectId id
         0: .line 933
            aload 0 /* this */
            aload 1 /* raw */
            iload 2 /* ptr */
            iload 3 /* end */
            getstatic org.eclipse.jgit.lib.ObjectChecker.dotGitmodules:[B
            aload 4 /* id */
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.isMacHFSPath:([BII[BLorg/eclipse/jgit/lib/AnyObjectId;)Z
            ireturn
        end local 4 // org.eclipse.jgit.lib.AnyObjectId id
        end local 3 // int end
        end local 2 // int ptr
        end local 1 // byte[] raw
        end local 0 // org.eclipse.jgit.lib.ObjectChecker this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jgit/lib/ObjectChecker;
            0    1     1   raw  [B
            0    1     2   ptr  I
            0    1     3   end  I
            0    1     4    id  Lorg/eclipse/jgit/lib/AnyObjectId;
    Exceptions:
      throws org.eclipse.jgit.errors.CorruptObjectException
    RuntimeVisibleParameterAnnotations: 
      0:
      1:
      2:
      3:
        org.eclipse.jgit.annotations.Nullable()
    MethodParameters:
      Name  Flags
      raw   
      ptr   
      end   
      id    

  private boolean checkTruncatedIgnorableUTF8(byte[], int, int, org.eclipse.jgit.lib.AnyObjectId);
    descriptor: ([BIILorg/eclipse/jgit/lib/AnyObjectId;)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=10, locals=5, args_size=5
        start local 0 // org.eclipse.jgit.lib.ObjectChecker this
        start local 1 // byte[] raw
        start local 2 // int ptr
        start local 3 // int end
        start local 4 // org.eclipse.jgit.lib.AnyObjectId id
         0: .line 938
            iload 2 /* ptr */
            iconst_2
            iadd
            iload 3 /* end */
            if_icmplt 6
         1: .line 939
            aload 0 /* this */
            getstatic org.eclipse.jgit.lib.ObjectChecker$ErrorType.BAD_UTF8:Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;
            aload 4 /* id */
         2: .line 940
            invokestatic org.eclipse.jgit.internal.JGitText.get:()Lorg/eclipse/jgit/internal/JGitText;
            getfield org.eclipse.jgit.internal.JGitText.corruptObjectInvalidNameInvalidUtf8:Ljava/lang/String;
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
         3: .line 941
            aload 1 /* raw */
            iload 2 /* ptr */
            iload 3 /* end */
            invokestatic org.eclipse.jgit.lib.ObjectChecker.toHexString:([BII)Ljava/lang/String;
            aastore
         4: .line 939
            invokestatic java.text.MessageFormat.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.report:(Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;Lorg/eclipse/jgit/lib/AnyObjectId;Ljava/lang/String;)V
         5: .line 942
            iconst_0
            ireturn
         6: .line 944
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 4 // org.eclipse.jgit.lib.AnyObjectId id
        end local 3 // int end
        end local 2 // int ptr
        end local 1 // byte[] raw
        end local 0 // org.eclipse.jgit.lib.ObjectChecker this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/eclipse/jgit/lib/ObjectChecker;
            0    7     1   raw  [B
            0    7     2   ptr  I
            0    7     3   end  I
            0    7     4    id  Lorg/eclipse/jgit/lib/AnyObjectId;
    Exceptions:
      throws org.eclipse.jgit.errors.CorruptObjectException
    RuntimeVisibleParameterAnnotations: 
      0:
      1:
      2:
      3:
        org.eclipse.jgit.annotations.Nullable()
    MethodParameters:
      Name  Flags
      raw   
      ptr   
      end   
      id    

  private static java.lang.String toHexString(byte[], int, int);
    descriptor: ([BII)Ljava/lang/String;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=7, locals=5, args_size=3
        start local 0 // byte[] raw
        start local 1 // int ptr
        start local 2 // int end
         0: .line 948
            new java.lang.StringBuilder
            dup
            ldc "0x"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            astore 3 /* b */
        start local 3 // java.lang.StringBuilder b
         1: .line 949
            iload 1 /* ptr */
            istore 4 /* i */
        start local 4 // int i
         2: goto 5
         3: .line 950
      StackMap locals: java.lang.StringBuilder int
      StackMap stack:
            aload 3 /* b */
            ldc "%02x"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 0 /* raw */
            iload 4 /* i */
            baload
            invokestatic java.lang.Byte.valueOf:(B)Ljava/lang/Byte;
            aastore
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         4: .line 949
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 4 /* i */
            iload 2 /* end */
            if_icmplt 3
        end local 4 // int i
         6: .line 951
            aload 3 /* b */
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 3 // java.lang.StringBuilder b
        end local 2 // int end
        end local 1 // int ptr
        end local 0 // byte[] raw
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0   raw  [B
            0    7     1   ptr  I
            0    7     2   end  I
            1    7     3     b  Ljava/lang/StringBuilder;
            2    6     4     i  I
    MethodParameters:
      Name  Flags
      raw   
      ptr   
      end   

  private void checkNotWindowsDevice(byte[], int, int, org.eclipse.jgit.lib.AnyObjectId);
    descriptor: ([BIILorg/eclipse/jgit/lib/AnyObjectId;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=10, locals=5, args_size=5
        start local 0 // org.eclipse.jgit.lib.ObjectChecker this
        start local 1 // byte[] raw
        start local 2 // int ptr
        start local 3 // int end
        start local 4 // org.eclipse.jgit.lib.AnyObjectId id
         0: .line 956
            aload 1 /* raw */
            iload 2 /* ptr */
            baload
            invokestatic org.eclipse.jgit.lib.ObjectChecker.toLower:(B)C
            lookupswitch { // 5
                   97: 1
                   99: 9
                  108: 26
                  110: 36
                  112: 44
              default: 51
          }
         1: .line 958
      StackMap locals:
      StackMap stack:
            iload 3 /* end */
            iload 2 /* ptr */
            isub
            iconst_3
            if_icmplt 51
         2: .line 959
            aload 1 /* raw */
            iload 2 /* ptr */
            iconst_1
            iadd
            baload
            invokestatic org.eclipse.jgit.lib.ObjectChecker.toLower:(B)C
            bipush 117
            if_icmpne 51
         3: .line 960
            aload 1 /* raw */
            iload 2 /* ptr */
            iconst_2
            iadd
            baload
            invokestatic org.eclipse.jgit.lib.ObjectChecker.toLower:(B)C
            bipush 120
            if_icmpne 51
         4: .line 961
            iload 3 /* end */
            iload 2 /* ptr */
            isub
            iconst_3
            if_icmpeq 5
            aload 1 /* raw */
            iload 2 /* ptr */
            iconst_3
            iadd
            baload
            bipush 46
            if_icmpne 51
         5: .line 962
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getstatic org.eclipse.jgit.lib.ObjectChecker$ErrorType.WIN32_BAD_NAME:Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;
            aload 4 /* id */
         6: .line 963
            invokestatic org.eclipse.jgit.internal.JGitText.get:()Lorg/eclipse/jgit/internal/JGitText;
            getfield org.eclipse.jgit.internal.JGitText.corruptObjectInvalidNameAux:Ljava/lang/String;
         7: .line 962
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.report:(Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;Lorg/eclipse/jgit/lib/AnyObjectId;Ljava/lang/String;)V
         8: .line 965
            goto 51
         9: .line 968
      StackMap locals:
      StackMap stack:
            iload 3 /* end */
            iload 2 /* ptr */
            isub
            iconst_3
            if_icmplt 16
        10: .line 969
            aload 1 /* raw */
            iload 2 /* ptr */
            iconst_2
            iadd
            baload
            invokestatic org.eclipse.jgit.lib.ObjectChecker.toLower:(B)C
            bipush 110
            if_icmpne 16
        11: .line 970
            aload 1 /* raw */
            iload 2 /* ptr */
            iconst_1
            iadd
            baload
            invokestatic org.eclipse.jgit.lib.ObjectChecker.toLower:(B)C
            bipush 111
            if_icmpne 16
        12: .line 971
            iload 3 /* end */
            iload 2 /* ptr */
            isub
            iconst_3
            if_icmpeq 13
            aload 1 /* raw */
            iload 2 /* ptr */
            iconst_3
            iadd
            baload
            bipush 46
            if_icmpne 16
        13: .line 972
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getstatic org.eclipse.jgit.lib.ObjectChecker$ErrorType.WIN32_BAD_NAME:Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;
            aload 4 /* id */
        14: .line 973
            invokestatic org.eclipse.jgit.internal.JGitText.get:()Lorg/eclipse/jgit/internal/JGitText;
            getfield org.eclipse.jgit.internal.JGitText.corruptObjectInvalidNameCon:Ljava/lang/String;
        15: .line 972
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.report:(Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;Lorg/eclipse/jgit/lib/AnyObjectId;Ljava/lang/String;)V
        16: .line 975
      StackMap locals:
      StackMap stack:
            iload 3 /* end */
            iload 2 /* ptr */
            isub
            iconst_4
            if_icmplt 51
        17: .line 976
            aload 1 /* raw */
            iload 2 /* ptr */
            iconst_2
            iadd
            baload
            invokestatic org.eclipse.jgit.lib.ObjectChecker.toLower:(B)C
            bipush 109
            if_icmpne 51
        18: .line 977
            aload 1 /* raw */
            iload 2 /* ptr */
            iconst_1
            iadd
            baload
            invokestatic org.eclipse.jgit.lib.ObjectChecker.toLower:(B)C
            bipush 111
            if_icmpne 51
        19: .line 978
            aload 1 /* raw */
            iload 2 /* ptr */
            iconst_3
            iadd
            baload
            invokestatic org.eclipse.jgit.lib.ObjectChecker.isPositiveDigit:(B)Z
            ifeq 51
        20: .line 979
            iload 3 /* end */
            iload 2 /* ptr */
            isub
            iconst_4
            if_icmpeq 21
            aload 1 /* raw */
            iload 2 /* ptr */
            iconst_4
            iadd
            baload
            bipush 46
            if_icmpne 51
        21: .line 980
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getstatic org.eclipse.jgit.lib.ObjectChecker$ErrorType.WIN32_BAD_NAME:Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;
            aload 4 /* id */
        22: .line 981
            invokestatic org.eclipse.jgit.internal.JGitText.get:()Lorg/eclipse/jgit/internal/JGitText;
            getfield org.eclipse.jgit.internal.JGitText.corruptObjectInvalidNameCom:Ljava/lang/String;
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
        23: .line 982
            aload 1 /* raw */
            iload 2 /* ptr */
            iconst_3
            iadd
            baload
            i2c
            invokestatic java.lang.Character.valueOf:(C)Ljava/lang/Character;
            aastore
        24: .line 980
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.report:(Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;Lorg/eclipse/jgit/lib/AnyObjectId;Ljava/lang/String;)V
        25: .line 984
            goto 51
        26: .line 987
      StackMap locals:
      StackMap stack:
            iload 3 /* end */
            iload 2 /* ptr */
            isub
            iconst_4
            if_icmplt 51
        27: .line 988
            aload 1 /* raw */
            iload 2 /* ptr */
            iconst_1
            iadd
            baload
            invokestatic org.eclipse.jgit.lib.ObjectChecker.toLower:(B)C
            bipush 112
            if_icmpne 51
        28: .line 989
            aload 1 /* raw */
            iload 2 /* ptr */
            iconst_2
            iadd
            baload
            invokestatic org.eclipse.jgit.lib.ObjectChecker.toLower:(B)C
            bipush 116
            if_icmpne 51
        29: .line 990
            aload 1 /* raw */
            iload 2 /* ptr */
            iconst_3
            iadd
            baload
            invokestatic org.eclipse.jgit.lib.ObjectChecker.isPositiveDigit:(B)Z
            ifeq 51
        30: .line 991
            iload 3 /* end */
            iload 2 /* ptr */
            isub
            iconst_4
            if_icmpeq 31
            aload 1 /* raw */
            iload 2 /* ptr */
            iconst_4
            iadd
            baload
            bipush 46
            if_icmpne 51
        31: .line 992
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getstatic org.eclipse.jgit.lib.ObjectChecker$ErrorType.WIN32_BAD_NAME:Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;
            aload 4 /* id */
        32: .line 993
            invokestatic org.eclipse.jgit.internal.JGitText.get:()Lorg/eclipse/jgit/internal/JGitText;
            getfield org.eclipse.jgit.internal.JGitText.corruptObjectInvalidNameLpt:Ljava/lang/String;
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
        33: .line 994
            aload 1 /* raw */
            iload 2 /* ptr */
            iconst_3
            iadd
            baload
            i2c
            invokestatic java.lang.Character.valueOf:(C)Ljava/lang/Character;
            aastore
        34: .line 992
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.report:(Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;Lorg/eclipse/jgit/lib/AnyObjectId;Ljava/lang/String;)V
        35: .line 996
            goto 51
        36: .line 999
      StackMap locals:
      StackMap stack:
            iload 3 /* end */
            iload 2 /* ptr */
            isub
            iconst_3
            if_icmplt 51
        37: .line 1000
            aload 1 /* raw */
            iload 2 /* ptr */
            iconst_1
            iadd
            baload
            invokestatic org.eclipse.jgit.lib.ObjectChecker.toLower:(B)C
            bipush 117
            if_icmpne 51
        38: .line 1001
            aload 1 /* raw */
            iload 2 /* ptr */
            iconst_2
            iadd
            baload
            invokestatic org.eclipse.jgit.lib.ObjectChecker.toLower:(B)C
            bipush 108
            if_icmpne 51
        39: .line 1002
            iload 3 /* end */
            iload 2 /* ptr */
            isub
            iconst_3
            if_icmpeq 40
            aload 1 /* raw */
            iload 2 /* ptr */
            iconst_3
            iadd
            baload
            bipush 46
            if_icmpne 51
        40: .line 1003
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getstatic org.eclipse.jgit.lib.ObjectChecker$ErrorType.WIN32_BAD_NAME:Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;
            aload 4 /* id */
        41: .line 1004
            invokestatic org.eclipse.jgit.internal.JGitText.get:()Lorg/eclipse/jgit/internal/JGitText;
            getfield org.eclipse.jgit.internal.JGitText.corruptObjectInvalidNameNul:Ljava/lang/String;
        42: .line 1003
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.report:(Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;Lorg/eclipse/jgit/lib/AnyObjectId;Ljava/lang/String;)V
        43: .line 1006
            goto 51
        44: .line 1009
      StackMap locals:
      StackMap stack:
            iload 3 /* end */
            iload 2 /* ptr */
            isub
            iconst_3
            if_icmplt 51
        45: .line 1010
            aload 1 /* raw */
            iload 2 /* ptr */
            iconst_1
            iadd
            baload
            invokestatic org.eclipse.jgit.lib.ObjectChecker.toLower:(B)C
            bipush 114
            if_icmpne 51
        46: .line 1011
            aload 1 /* raw */
            iload 2 /* ptr */
            iconst_2
            iadd
            baload
            invokestatic org.eclipse.jgit.lib.ObjectChecker.toLower:(B)C
            bipush 110
            if_icmpne 51
        47: .line 1012
            iload 3 /* end */
            iload 2 /* ptr */
            isub
            iconst_3
            if_icmpeq 48
            aload 1 /* raw */
            iload 2 /* ptr */
            iconst_3
            iadd
            baload
            bipush 46
            if_icmpne 51
        48: .line 1013
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getstatic org.eclipse.jgit.lib.ObjectChecker$ErrorType.WIN32_BAD_NAME:Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;
            aload 4 /* id */
        49: .line 1014
            invokestatic org.eclipse.jgit.internal.JGitText.get:()Lorg/eclipse/jgit/internal/JGitText;
            getfield org.eclipse.jgit.internal.JGitText.corruptObjectInvalidNamePrn:Ljava/lang/String;
        50: .line 1013
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.report:(Lorg/eclipse/jgit/lib/ObjectChecker$ErrorType;Lorg/eclipse/jgit/lib/AnyObjectId;Ljava/lang/String;)V
        51: .line 1018
      StackMap locals:
      StackMap stack:
            return
        end local 4 // org.eclipse.jgit.lib.AnyObjectId id
        end local 3 // int end
        end local 2 // int ptr
        end local 1 // byte[] raw
        end local 0 // org.eclipse.jgit.lib.ObjectChecker this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   52     0  this  Lorg/eclipse/jgit/lib/ObjectChecker;
            0   52     1   raw  [B
            0   52     2   ptr  I
            0   52     3   end  I
            0   52     4    id  Lorg/eclipse/jgit/lib/AnyObjectId;
    Exceptions:
      throws org.eclipse.jgit.errors.CorruptObjectException
    RuntimeVisibleParameterAnnotations: 
      0:
      1:
      2:
      3:
        org.eclipse.jgit.annotations.Nullable()
    MethodParameters:
      Name  Flags
      raw   
      ptr   
      end   
      id    

  private static boolean isInvalidOnWindows(byte);
    descriptor: (B)Z
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // byte c
         0: .line 1022
            iload 0 /* c */
            lookupswitch { // 8
                   34: 1
                   42: 1
                   58: 1
                   60: 1
                   62: 1
                   63: 1
                   92: 1
                  124: 1
              default: 2
          }
         1: .line 1031
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
         2: .line 1033
      StackMap locals:
      StackMap stack:
            iconst_1
            iload 0 /* c */
            if_icmpgt 3
            iload 0 /* c */
            bipush 31
            if_icmpgt 3
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         3: iconst_0
            ireturn
        end local 0 // byte c
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0     c  B
    MethodParameters:
      Name  Flags
      c     

  private static boolean isGit(byte[], int);
    descriptor: ([BI)Z
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // byte[] buf
        start local 1 // int p
         0: .line 1037
            aload 0 /* buf */
            iload 1 /* p */
            baload
            invokestatic org.eclipse.jgit.lib.ObjectChecker.toLower:(B)C
            bipush 103
            if_icmpne 4
         1: .line 1038
            aload 0 /* buf */
            iload 1 /* p */
            iconst_1
            iadd
            baload
            invokestatic org.eclipse.jgit.lib.ObjectChecker.toLower:(B)C
            bipush 105
            if_icmpne 4
         2: .line 1039
            aload 0 /* buf */
            iload 1 /* p */
            iconst_2
            iadd
            baload
            invokestatic org.eclipse.jgit.lib.ObjectChecker.toLower:(B)C
            bipush 116
            if_icmpne 4
         3: .line 1037
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         4: iconst_0
            ireturn
        end local 1 // int p
        end local 0 // byte[] buf
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0   buf  [B
            0    5     1     p  I
    MethodParameters:
      Name  Flags
      buf   
      p     

  private boolean isGitmodules(byte[], int, int, org.eclipse.jgit.lib.AnyObjectId);
    descriptor: ([BIILorg/eclipse/jgit/lib/AnyObjectId;)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=5, args_size=5
        start local 0 // org.eclipse.jgit.lib.ObjectChecker this
        start local 1 // byte[] buf
        start local 2 // int start
        start local 3 // int end
        start local 4 // org.eclipse.jgit.lib.AnyObjectId id
         0: .line 1072
            iload 3 /* end */
            iload 2 /* start */
            isub
            bipush 8
            if_icmpge 2
         1: .line 1073
            iconst_0
            ireturn
         2: .line 1075
      StackMap locals:
      StackMap stack:
            iload 3 /* end */
            iload 2 /* start */
            isub
            getstatic org.eclipse.jgit.lib.ObjectChecker.dotGitmodules:[B
            arraylength
            if_icmpne 4
         3: .line 1076
            aload 1 /* buf */
            iload 2 /* start */
            getstatic org.eclipse.jgit.lib.ObjectChecker.dotGitmodules:[B
            invokestatic org.eclipse.jgit.util.RawParseUtils.match:([BI[B)I
            iconst_m1
            if_icmpne 7
         4: .line 1077
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectChecker.macosx:Z
            ifeq 5
            aload 0 /* this */
            aload 1 /* buf */
            iload 2 /* start */
            iload 3 /* end */
            aload 4 /* id */
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.isMacHFSGitmodules:([BIILorg/eclipse/jgit/lib/AnyObjectId;)Z
            ifne 7
         5: .line 1078
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectChecker.windows:Z
            ifeq 6
            aload 0 /* this */
            aload 1 /* buf */
            iload 2 /* start */
            iload 3 /* end */
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.isNTFSGitmodules:([BII)Z
            ifne 7
         6: .line 1075
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
      StackMap locals:
      StackMap stack:
         7: iconst_1
            ireturn
        end local 4 // org.eclipse.jgit.lib.AnyObjectId id
        end local 3 // int end
        end local 2 // int start
        end local 1 // byte[] buf
        end local 0 // org.eclipse.jgit.lib.ObjectChecker this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    8     0   this  Lorg/eclipse/jgit/lib/ObjectChecker;
            0    8     1    buf  [B
            0    8     2  start  I
            0    8     3    end  I
            0    8     4     id  Lorg/eclipse/jgit/lib/AnyObjectId;
    Exceptions:
      throws org.eclipse.jgit.errors.CorruptObjectException
    RuntimeVisibleParameterAnnotations: 
      0:
      1:
      2:
      3:
        org.eclipse.jgit.annotations.Nullable()
    MethodParameters:
       Name  Flags
      buf    
      start  
      end    
      id     

  private boolean matchLowerCase(byte[], int, byte[]);
    descriptor: ([BI[B)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=5, args_size=4
        start local 0 // org.eclipse.jgit.lib.ObjectChecker this
        start local 1 // byte[] b
        start local 2 // int ptr
        start local 3 // byte[] src
         0: .line 1082
            iload 2 /* ptr */
            aload 3 /* src */
            arraylength
            iadd
            aload 1 /* b */
            arraylength
            if_icmple 2
         1: .line 1083
            iconst_0
            ireturn
         2: .line 1085
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         3: goto 7
         4: .line 1086
      StackMap locals: int
      StackMap stack:
            aload 1 /* b */
            iload 2 /* ptr */
            baload
            invokestatic org.eclipse.jgit.lib.ObjectChecker.toLower:(B)C
            aload 3 /* src */
            iload 4 /* i */
            baload
            if_icmpeq 6
         5: .line 1087
            iconst_0
            ireturn
         6: .line 1085
      StackMap locals:
      StackMap stack:
            iinc 4 /* i */ 1
            iinc 2 /* ptr */ 1
      StackMap locals:
      StackMap stack:
         7: iload 4 /* i */
            aload 3 /* src */
            arraylength
            if_icmplt 4
        end local 4 // int i
         8: .line 1090
            iconst_1
            ireturn
        end local 3 // byte[] src
        end local 2 // int ptr
        end local 1 // byte[] b
        end local 0 // org.eclipse.jgit.lib.ObjectChecker this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lorg/eclipse/jgit/lib/ObjectChecker;
            0    9     1     b  [B
            0    9     2   ptr  I
            0    9     3   src  [B
            3    8     4     i  I
    MethodParameters:
      Name  Flags
      b     
      ptr   
      src   

  private boolean isNTFSGitmodules(byte[], int, int);
    descriptor: ([BII)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=8, args_size=4
        start local 0 // org.eclipse.jgit.lib.ObjectChecker this
        start local 1 // byte[] buf
        start local 2 // int start
        start local 3 // int end
         0: .line 1095
            iload 3 /* end */
            iload 2 /* start */
            isub
            bipush 11
            if_icmpne 2
         1: .line 1096
            aload 0 /* this */
            aload 1 /* buf */
            iload 2 /* start */
            getstatic org.eclipse.jgit.lib.ObjectChecker.dotGitmodules:[B
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.matchLowerCase:([BI[B)Z
            ireturn
         2: .line 1099
      StackMap locals:
      StackMap stack:
            iload 3 /* end */
            iload 2 /* start */
            isub
            bipush 8
            if_icmpeq 4
         3: .line 1100
            iconst_0
            ireturn
         4: .line 1104
      StackMap locals:
      StackMap stack:
            bipush 7
            newarray 8
            dup
            iconst_0
            bipush 103
            bastore
            dup
            iconst_1
            bipush 105
            bastore
            dup
            iconst_2
            bipush 116
            bastore
            dup
            iconst_3
            bipush 109
            bastore
            dup
            iconst_4
            bipush 111
            bastore
            dup
            iconst_5
            bipush 100
            bastore
            dup
            bipush 6
            bipush 126
            bastore
            astore 4 /* gitmod */
        start local 4 // byte[] gitmod
         5: .line 1105
            aload 0 /* this */
            aload 1 /* buf */
            iload 2 /* start */
            aload 4 /* gitmod */
            invokevirtual org.eclipse.jgit.lib.ObjectChecker.matchLowerCase:([BI[B)Z
            ifeq 8
         6: .line 1106
            iinc 2 /* start */ 6
         7: .line 1107
            goto 18
         8: .line 1108
      StackMap locals: byte[]
      StackMap stack:
            bipush 6
            newarray 8
            dup
            iconst_0
            bipush 103
            bastore
            dup
            iconst_1
            bipush 105
            bastore
            dup
            iconst_2
            bipush 55
            bastore
            dup
            iconst_3
            bipush 101
            bastore
            dup
            iconst_4
            bipush 98
            bastore
            dup
            iconst_5
            bipush 97
            bastore
            astore 5 /* gi7eba */
        start local 5 // byte[] gi7eba
         9: .line 1109
            iconst_0
            istore 6 /* i */
        start local 6 // int i
        10: goto 17
        11: .line 1110
      StackMap locals: byte[] int
      StackMap stack:
            aload 1 /* buf */
            iload 2 /* start */
            baload
            invokestatic org.eclipse.jgit.lib.ObjectChecker.toLower:(B)C
            i2b
            istore 7 /* c */
        start local 7 // byte c
        12: .line 1111
            iload 7 /* c */
            bipush 126
            if_icmpne 14
        13: .line 1112
            goto 18
        14: .line 1114
      StackMap locals: int
      StackMap stack:
            iload 7 /* c */
            aload 5 /* gi7eba */
            iload 6 /* i */
            baload
            if_icmpeq 16
        15: .line 1115
            iconst_0
            ireturn
        end local 7 // byte c
        16: .line 1109
      StackMap locals:
      StackMap stack:
            iinc 6 /* i */ 1
            iinc 2 /* start */ 1
      StackMap locals:
      StackMap stack:
        17: iload 6 /* i */
            aload 5 /* gi7eba */
            arraylength
            if_icmplt 11
        end local 6 // int i
        end local 5 // byte[] gi7eba
        18: .line 1121
      StackMap locals:
      StackMap stack:
            iload 3 /* end */
            iload 2 /* start */
            isub
            iconst_2
            if_icmpge 20
        19: .line 1122
            iconst_0
            ireturn
        20: .line 1124
      StackMap locals:
      StackMap stack:
            aload 1 /* buf */
            iload 2 /* start */
            baload
            bipush 126
            if_icmpeq 22
        21: .line 1125
            iconst_0
            ireturn
        22: .line 1127
      StackMap locals:
      StackMap stack:
            iinc 2 /* start */ 1
        23: .line 1128
            aload 1 /* buf */
            iload 2 /* start */
            baload
            bipush 49
            if_icmplt 24
            aload 1 /* buf */
            iload 2 /* start */
            baload
            bipush 57
            if_icmple 25
        24: .line 1129
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        25: .line 1131
      StackMap locals:
      StackMap stack:
            iinc 2 /* start */ 1
        26: .line 1132
            goto 30
        27: .line 1133
      StackMap locals:
      StackMap stack:
            aload 1 /* buf */
            iload 2 /* start */
            baload
            bipush 48
            if_icmplt 28
            aload 1 /* buf */
            iload 2 /* start */
            baload
            bipush 57
            if_icmple 29
        28: .line 1134
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        29: .line 1132
      StackMap locals:
      StackMap stack:
            iinc 2 /* start */ 1
      StackMap locals:
      StackMap stack:
        30: iload 2 /* start */
            iload 3 /* end */
            if_icmpne 27
        31: .line 1137
            iconst_1
            ireturn
        end local 4 // byte[] gitmod
        end local 3 // int end
        end local 2 // int start
        end local 1 // byte[] buf
        end local 0 // org.eclipse.jgit.lib.ObjectChecker this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   32     0    this  Lorg/eclipse/jgit/lib/ObjectChecker;
            0   32     1     buf  [B
            0   32     2   start  I
            0   32     3     end  I
            5   32     4  gitmod  [B
            9   18     5  gi7eba  [B
           10   18     6       i  I
           12   16     7       c  B
    MethodParameters:
       Name  Flags
      buf    
      start  
      end    

  private static boolean isGitTilde1(byte[], int, int);
    descriptor: ([BII)Z
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // byte[] buf
        start local 1 // int p
        start local 2 // int end
         0: .line 1141
            iload 2 /* end */
            iload 1 /* p */
            isub
            iconst_5
            if_icmpeq 2
         1: .line 1142
            iconst_0
            ireturn
         2: .line 1143
      StackMap locals:
      StackMap stack:
            aload 0 /* buf */
            iload 1 /* p */
            baload
            invokestatic org.eclipse.jgit.lib.ObjectChecker.toLower:(B)C
            bipush 103
            if_icmpne 6
            aload 0 /* buf */
            iload 1 /* p */
            iconst_1
            iadd
            baload
            invokestatic org.eclipse.jgit.lib.ObjectChecker.toLower:(B)C
            bipush 105
            if_icmpne 6
         3: .line 1144
            aload 0 /* buf */
            iload 1 /* p */
            iconst_2
            iadd
            baload
            invokestatic org.eclipse.jgit.lib.ObjectChecker.toLower:(B)C
            bipush 116
            if_icmpne 6
            aload 0 /* buf */
            iload 1 /* p */
            iconst_3
            iadd
            baload
            bipush 126
            if_icmpne 6
         4: .line 1145
            aload 0 /* buf */
            iload 1 /* p */
            iconst_4
            iadd
            baload
            bipush 49
            if_icmpne 6
         5: .line 1143
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         6: iconst_0
            ireturn
        end local 2 // int end
        end local 1 // int p
        end local 0 // byte[] buf
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0   buf  [B
            0    7     1     p  I
            0    7     2   end  I
    MethodParameters:
      Name  Flags
      buf   
      p     
      end   

  private static boolean isNormalizedGit(byte[], int, int);
    descriptor: ([BII)Z
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=6, args_size=3
        start local 0 // byte[] raw
        start local 1 // int ptr
        start local 2 // int end
         0: .line 1149
            aload 0 /* raw */
            iload 1 /* ptr */
            invokestatic org.eclipse.jgit.lib.ObjectChecker.isGit:([BI)Z
            ifeq 14
         1: .line 1150
            iconst_0
            istore 3 /* dots */
        start local 3 // int dots
         2: .line 1151
            iconst_0
            istore 4 /* space */
        start local 4 // boolean space
         3: .line 1152
            iload 2 /* end */
            iconst_1
            isub
            istore 5 /* p */
        start local 5 // int p
         4: .line 1153
            goto 10
         5: .line 1154
      StackMap locals: int int int
      StackMap stack:
            aload 0 /* raw */
            iload 5 /* p */
            baload
            bipush 46
            if_icmpne 7
         6: .line 1155
            iinc 3 /* dots */ 1
            goto 9
         7: .line 1156
      StackMap locals:
      StackMap stack:
            aload 0 /* raw */
            iload 5 /* p */
            baload
            bipush 32
            if_icmpne 11
         8: .line 1157
            iconst_1
            istore 4 /* space */
         9: .line 1153
      StackMap locals:
      StackMap stack:
            iinc 5 /* p */ -1
      StackMap locals:
      StackMap stack:
        10: iload 1 /* ptr */
            iconst_2
            iadd
            iload 5 /* p */
            if_icmplt 5
        11: .line 1161
      StackMap locals:
      StackMap stack:
            iload 5 /* p */
            iload 1 /* ptr */
            iconst_2
            iadd
            if_icmpne 13
            iload 3 /* dots */
            iconst_1
            if_icmpeq 12
            iload 4 /* space */
            ifeq 13
      StackMap locals:
      StackMap stack:
        12: iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
        13: iconst_0
            ireturn
        end local 5 // int p
        end local 4 // boolean space
        end local 3 // int dots
        14: .line 1163
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 2 // int end
        end local 1 // int ptr
        end local 0 // byte[] raw
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   15     0    raw  [B
            0   15     1    ptr  I
            0   15     2    end  I
            2   14     3   dots  I
            3   14     4  space  Z
            4   14     5      p  I
    MethodParameters:
      Name  Flags
      raw   
      ptr   
      end   

  private boolean match(byte[], byte[]);
    descriptor: ([B[B)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.eclipse.jgit.lib.ObjectChecker this
        start local 1 // byte[] b
        start local 2 // byte[] src
         0: .line 1167
            aload 1 /* b */
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectChecker.bufPtr:Lorg/eclipse/jgit/util/MutableInteger;
            getfield org.eclipse.jgit.util.MutableInteger.value:I
            aload 2 /* src */
            invokestatic org.eclipse.jgit.util.RawParseUtils.match:([BI[B)I
            istore 3 /* r */
        start local 3 // int r
         1: .line 1168
            iload 3 /* r */
            ifge 3
         2: .line 1169
            iconst_0
            ireturn
         3: .line 1171
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectChecker.bufPtr:Lorg/eclipse/jgit/util/MutableInteger;
            iload 3 /* r */
            putfield org.eclipse.jgit.util.MutableInteger.value:I
         4: .line 1172
            iconst_1
            ireturn
        end local 3 // int r
        end local 2 // byte[] src
        end local 1 // byte[] b
        end local 0 // org.eclipse.jgit.lib.ObjectChecker this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/eclipse/jgit/lib/ObjectChecker;
            0    5     1     b  [B
            0    5     2   src  [B
            1    5     3     r  I
    MethodParameters:
      Name  Flags
      b     
      src   

  private static char toLower(byte);
    descriptor: (B)C
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // byte b
         0: .line 1176
            bipush 65
            iload 0 /* b */
            if_icmpgt 2
            iload 0 /* b */
            bipush 90
            if_icmpgt 2
         1: .line 1177
            iload 0 /* b */
            bipush 32
            iadd
            i2c
            ireturn
         2: .line 1178
      StackMap locals:
      StackMap stack:
            iload 0 /* b */
            i2c
            ireturn
        end local 0 // byte b
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0     b  B
    MethodParameters:
      Name  Flags
      b     

  private static boolean isPositiveDigit(byte);
    descriptor: (B)Z
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // byte b
         0: .line 1182
            bipush 49
            iload 0 /* b */
            if_icmpgt 1
            iload 0 /* b */
            bipush 57
            if_icmpgt 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // byte b
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0     b  B
    MethodParameters:
      Name  Flags
      b     

  public org.eclipse.jgit.lib.BlobObjectChecker newBlobObjectChecker();
    descriptor: ()Lorg/eclipse/jgit/lib/BlobObjectChecker;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jgit.lib.ObjectChecker this
         0: .line 1193
            aconst_null
            areturn
        end local 0 // org.eclipse.jgit.lib.ObjectChecker this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jgit/lib/ObjectChecker;
    RuntimeVisibleAnnotations: 
      org.eclipse.jgit.annotations.Nullable()

  public void checkBlob(byte[]);
    descriptor: ([B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=2, args_size=2
        start local 0 // org.eclipse.jgit.lib.ObjectChecker this
        start local 1 // byte[] raw
         0: .line 1210
            return
        end local 1 // byte[] raw
        end local 0 // org.eclipse.jgit.lib.ObjectChecker this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jgit/lib/ObjectChecker;
            0    1     1   raw  [B
    Exceptions:
      throws org.eclipse.jgit.errors.CorruptObjectException
    MethodParameters:
      Name  Flags
      raw   

  private java.lang.String normalize(byte[], int, int);
    descriptor: ([BII)Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=5, args_size=4
        start local 0 // org.eclipse.jgit.lib.ObjectChecker this
        start local 1 // byte[] raw
        start local 2 // int ptr
        start local 3 // int end
         0: .line 1213
            aload 1 /* raw */
            iload 2 /* ptr */
            iload 3 /* end */
            invokestatic org.eclipse.jgit.util.RawParseUtils.decode:([BII)Ljava/lang/String;
            getstatic java.util.Locale.US:Ljava/util/Locale;
            invokevirtual java.lang.String.toLowerCase:(Ljava/util/Locale;)Ljava/lang/String;
            astore 4 /* n */
        start local 4 // java.lang.String n
         1: .line 1214
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectChecker.macosx:Z
            ifeq 2
            aload 4 /* n */
            getstatic java.text.Normalizer$Form.NFC:Ljava/text/Normalizer$Form;
            invokestatic java.text.Normalizer.normalize:(Ljava/lang/CharSequence;Ljava/text/Normalizer$Form;)Ljava/lang/String;
            goto 3
      StackMap locals: java.lang.String
      StackMap stack:
         2: aload 4 /* n */
      StackMap locals:
      StackMap stack: java.lang.String
         3: areturn
        end local 4 // java.lang.String n
        end local 3 // int end
        end local 2 // int ptr
        end local 1 // byte[] raw
        end local 0 // org.eclipse.jgit.lib.ObjectChecker this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/eclipse/jgit/lib/ObjectChecker;
            0    4     1   raw  [B
            0    4     2   ptr  I
            0    4     3   end  I
            1    4     4     n  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      raw   
      ptr   
      end   

  public java.util.List<org.eclipse.jgit.lib.GitmoduleEntry> getGitsubmodules();
    descriptor: ()Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jgit.lib.ObjectChecker this
         0: .line 1227
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectChecker.gitsubmodules:Ljava/util/List;
            areturn
        end local 0 // org.eclipse.jgit.lib.ObjectChecker this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jgit/lib/ObjectChecker;
    Signature: ()Ljava/util/List<Lorg/eclipse/jgit/lib/GitmoduleEntry;>;

  public void reset();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jgit.lib.ObjectChecker this
         0: .line 1242
            aload 0 /* this */
            getfield org.eclipse.jgit.lib.ObjectChecker.gitsubmodules:Ljava/util/List;
            invokeinterface java.util.List.clear:()V
         1: .line 1243
            return
        end local 0 // org.eclipse.jgit.lib.ObjectChecker this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/jgit/lib/ObjectChecker;
}
SourceFile: "ObjectChecker.java"
NestMembers:
  org.eclipse.jgit.lib.ObjectChecker$ErrorType
InnerClasses:
  public final Form = java.text.Normalizer$Form of java.text.Normalizer
  public final ErrorType = org.eclipse.jgit.lib.ObjectChecker$ErrorType of org.eclipse.jgit.lib.ObjectChecker
  public Formatter = org.eclipse.jgit.lib.ObjectInserter$Formatter of org.eclipse.jgit.lib.ObjectInserter