~sandy-carter/bzr4idea/compile_errors

« back to all changes in this revision

Viewing changes to src/bzr4idea/rollback/BzrRollbackEnvironment.java

  • Committer: Sandy Carter
  • Date: 2013-12-12 04:54:06 UTC
  • Revision ID: sandy.carter@savoirfairelinux.com-20131212045406-sg12azu8wpnb69y5
Work on Bzr Commands class

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
 */
16
16
package bzr4idea.rollback;
17
17
 
 
18
import bzr4idea.commands.BzrImpl;
18
19
import com.intellij.openapi.components.ServiceManager;
19
20
import com.intellij.openapi.project.Project;
20
21
import com.intellij.openapi.vcs.FilePath;
33
34
import java.util.List;
34
35
import java.util.Map;
35
36
 
36
 
import bzr4idea.Bzr;
37
 
 
38
37
/**
39
38
 * Git rollback/revert environment
40
39
 */
168
167
    handler.addRelativePaths(files);
169
168
    handler.run();
170
169
*/
171
 
    Bzr bzr = Bzr.forBzrRoot(root);
 
170
    BzrImpl bzr = BzrImpl.forBzrRoot(root);
172
171
    bzr.revert(files);
173
172
  }
174
173