This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

View | Details | Raw Unified | Return to bug 128017
Collapse All | Expand All

(-)a/mercurial/src/org/netbeans/modules/mercurial/ui/pull/FetchAction.java (-2 / +1 lines)
Lines 88-95 public class FetchAction extends Context Link Here
88
        
88
        
89
        RequestProcessor rp = Mercurial.getInstance().getRequestProcessor(root);
89
        RequestProcessor rp = Mercurial.getInstance().getRequestProcessor(root);
90
        HgProgressSupport support = new HgProgressSupport() {
90
        HgProgressSupport support = new HgProgressSupport() {
91
            OutputLogger logger = getLogger();
91
            public void perform() { performFetch(root, this.getLogger()); } };
92
            public void perform() { performFetch(root, logger); } };
93
92
94
        support.start(rp, root.getAbsolutePath(), org.openide.util.NbBundle.getMessage(FetchAction.class, "MSG_FETCH_PROGRESS")); // NOI18N
93
        support.start(rp, root.getAbsolutePath(), org.openide.util.NbBundle.getMessage(FetchAction.class, "MSG_FETCH_PROGRESS")); // NOI18N
95
    }
94
    }

Return to bug 128017