Skip to content

Commit

Permalink
Compilation fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
fisakov committed Mar 9, 2012
1 parent 52e43da commit cb4f80f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions plugins/vcs/source_gen/jetbrains/mps/vcs/MPSVcsManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@
import org.jetbrains.annotations.NotNull;
import com.intellij.openapi.ui.Messages;
import com.intellij.openapi.vcs.AbstractVcsHelper;

import java.io.File;
import java.util.Arrays;
import java.util.List;
import com.intellij.openapi.vcs.changes.ChangeListManagerImpl;
Expand Down Expand Up @@ -160,6 +162,10 @@ public static class StubChangeListManagerGate implements ChangeListManagerGate {
public StubChangeListManagerGate() {
}

public FileStatus getStatus(File file) {
return null;
}

public List<LocalChangeList> getListsCopy() {
return null;
}
Expand Down

0 comments on commit cb4f80f

Please sign in to comment.