Package org.eclipse.jgit.internal.storage.dfs

Examples of org.eclipse.jgit.internal.storage.dfs.DfsRepositoryDescription


  }

  @Override
  protected Repository init(URIish u) throws GitAPIException {
    if (isInMemory()) {
      return new InMemoryRepository(new DfsRepositoryDescription());
    } else {
      return super.init(u);
    }
  }
View Full Code Here

TOP

Related Classes of org.eclipse.jgit.internal.storage.dfs.DfsRepositoryDescription

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.