~sandy-carter/bzr4idea/compile_errors

« back to all changes in this revision

Viewing changes to src/bzr4idea/rebase/GitRebaseDialog.java

  • Committer: Patrik Beno
  • Date: 2009-04-19 15:37:45 UTC
  • Revision ID: patrik.beno@gmail.com-20090419153745-xbev8lgb4cvookg7
BZR-79 refactoring: repackaged to bzr4idea

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
 * See the License for the specific language governing permissions and
14
14
 * limitations under the License.
15
15
 */
16
 
package git4idea.rebase;
 
16
package bzr4idea.rebase;
17
17
 
18
18
import com.intellij.openapi.project.Project;
19
19
import com.intellij.openapi.ui.DialogWrapper;
20
20
import com.intellij.openapi.vcs.VcsException;
21
21
import com.intellij.openapi.vfs.VirtualFile;
22
22
import com.intellij.ui.DocumentAdapter;
23
 
import git4idea.GitBranch;
24
 
import git4idea.GitTag;
25
 
import git4idea.commands.GitHandler;
26
 
import git4idea.commands.GitLineHandler;
27
 
import git4idea.config.GitConfigUtil;
28
 
import git4idea.i18n.GitBundle;
29
 
import git4idea.merge.GitMergeUtil;
30
 
import git4idea.ui.GitReferenceValidator;
31
 
import git4idea.ui.GitUIUtil;
 
23
import bzr4idea.GitBranch;
 
24
import bzr4idea.GitTag;
 
25
import bzr4idea.commands.GitHandler;
 
26
import bzr4idea.commands.GitLineHandler;
 
27
import bzr4idea.config.GitConfigUtil;
 
28
import bzr4idea.i18n.GitBundle;
 
29
import bzr4idea.merge.GitMergeUtil;
 
30
import bzr4idea.ui.GitReferenceValidator;
 
31
import bzr4idea.ui.GitUIUtil;
32
32
 
33
33
import javax.swing.*;
34
34
import javax.swing.event.DocumentEvent;