Package org.eclipse.egit.core.internal.storage

Examples of org.eclipse.egit.core.internal.storage.CommitBlobStorage


    return false;
  }

  @Override
  protected void fetchContents(IProgressMonitor monitor) throws TeamException {
    CommitBlobStorage content = new CommitBlobStorage(repo, getPath(),
        getObjectId(), getCommitId());
    try {
      setContents(content.getContents(), monitor);
    } catch (CoreException e) {
      Activator.error("", e); //$NON-NLS-1$
    }
  }
View Full Code Here


    return false;
  }

  @Override
  public IStorage getStorage(IProgressMonitor monitor) throws TeamException {
    return new CommitBlobStorage(repo, getCachePath(), getObjectId(),
        getCommitId());
  }
View Full Code Here

TOP

Related Classes of org.eclipse.egit.core.internal.storage.CommitBlobStorage

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.