Package org.eclipse.jgit.errors

Examples of org.eclipse.jgit.errors.InvalidObjectIdException


      final int c = hexUInt32(bs, ptr + 16, end);
      final int d = hexUInt32(bs, ptr + 24, end);
      final int e = hexUInt32(bs, ptr + 32, end);
      return new AbbreviatedObjectId(end - ptr, a, b, c, d, e);
    } catch (ArrayIndexOutOfBoundsException e1) {
      throw new InvalidObjectIdException(bs, ptr, end - ptr);
    }
  }
View Full Code Here

TOP

Related Classes of org.eclipse.jgit.errors.InvalidObjectIdException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.