Mercurial > jhg
comparison src/org/tmatesoft/hg/core/HgCloneCommand.java @ 431:12f668401613
FIXMEs: awkward API refactored, what need to be internal got hidden; public aspects got captured in slim interfaces
author | Artem Tikhomirov <tikhomirov.artem@gmail.com> |
---|---|
date | Thu, 29 Mar 2012 20:54:04 +0200 |
parents | 9c9c442b5f2e |
children | b3c16d1aede0 |
comparison
equal
deleted
inserted
replaced
430:d280759c2a3f | 431:12f668401613 |
---|---|
145 private final LinkedList<String> fncacheFiles = new LinkedList<String>(); | 145 private final LinkedList<String> fncacheFiles = new LinkedList<String>(); |
146 private Internals implHelper; | 146 private Internals implHelper; |
147 | 147 |
148 public WriteDownMate(File destDir) { | 148 public WriteDownMate(File destDir) { |
149 hgDir = new File(destDir, ".hg"); | 149 hgDir = new File(destDir, ".hg"); |
150 implHelper = new Internals(new BasicSessionContext(null, null)); | 150 implHelper = new Internals(new BasicSessionContext(null)); |
151 implHelper.setStorageConfig(1, STORE | FNCACHE | DOTENCODE); | 151 implHelper.setStorageConfig(1, STORE | FNCACHE | DOTENCODE); |
152 storagePathHelper = implHelper.buildDataFilesHelper(); | 152 storagePathHelper = implHelper.buildDataFilesHelper(); |
153 } | 153 } |
154 | 154 |
155 public void initEmptyRepository() throws IOException { | 155 public void initEmptyRepository() throws IOException { |