Package org.eclipse.jgit.util.io

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


        // itself should ignore line endings.
      case FALSE:
        return db.open(blobId, Constants.OBJ_BLOB).openStream();
      case TRUE:
      default:
        return new AutoCRLFInputStream(db.open(blobId, Constants.OBJ_BLOB).openStream(), true);
      }
    } catch (MissingObjectException notFound) {
      throw new CoreException(Activator.error(NLS.bind(
          CoreText.BlobStorage_blobNotFound, blobId.name(), path),
          null));
View Full Code Here

TOP

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

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.