Package org.eclipse.jgit.util.io

Examples of org.eclipse.jgit.util.io.LimitedInputStream


      rawIn = timeoutIn;
      rawOut = o;
    }

    if (maxPackSizeLimit >= 0)
      rawIn = new LimitedInputStream(rawIn, maxPackSizeLimit) {
        @Override
        protected void limitExceeded() throws TooLargePackException {
          throw new TooLargePackException(limit);
        }
      };
View Full Code Here

TOP

Related Classes of org.eclipse.jgit.util.io.LimitedInputStream

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.