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 126385
Collapse All | Expand All

(-)a/mercurial/src/org/netbeans/modules/mercurial/HgProgressSupport.java (-2 / +2 lines)
Lines 91-101 public abstract class HgProgressSupport Link Here
91
91
92
    protected void performIntern() {
92
    protected void performIntern() {
93
        try {
93
        try {
94
            Mercurial.LOG.log(Level.FINE, "Start - ", displayName); // NOI18N
94
            Mercurial.LOG.log(Level.FINE, "Start - {0}", displayName); // NOI18N
95
            if(!canceled) {
95
            if(!canceled) {
96
                perform();
96
                perform();
97
            }
97
            }
98
            Mercurial.LOG.log(Level.FINE, "End - ", displayName); // NOI18N
98
            Mercurial.LOG.log(Level.FINE, "End - {0}", displayName); // NOI18N
99
        } finally {            
99
        } finally {            
100
            finnishProgress();
100
            finnishProgress();
101
        }
101
        }

Return to bug 126385