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

(-)a/javascript2.debug/src/org/netbeans/modules/javascript2/debug/breakpoints/JSLineBreakpoint.java (+4 lines)
Lines 104-109 Link Here
104
        }
104
        }
105
    }
105
    }
106
    
106
    
107
    public static JSLineBreakpoint create(URL u, int line) {
108
        return new JSLineBreakpoint(new FutureLine(u, line));
109
    }
110
    
107
    public Line getLine() {
111
    public Line getLine() {
108
        return line;
112
        return line;
109
    }
113
    }
(-)a/uihandler/src/org/netbeans/modules/uihandler/Installer.java (-1 / +6 lines)
Lines 183-189 Link Here
183
183
184
    static boolean preferencesWritable = false;
184
    static boolean preferencesWritable = false;
185
    static final String preferencesWritableKey = "uihandler.preferences.writable.check"; // NOI18N
185
    static final String preferencesWritableKey = "uihandler.preferences.writable.check"; // NOI18N
186
    static {
186
    private static boolean initializeDone;
187
    static void initializeNow() {
188
        if (initializeDone) return;
189
        initializeDone = true;
190
187
        // #131128 - suppress repetitive exceptions when config/Preferences/org/netbeans/modules/uihandler.properties
191
        // #131128 - suppress repetitive exceptions when config/Preferences/org/netbeans/modules/uihandler.properties
188
        // is not writable for some reason
192
        // is not writable for some reason
189
        long checkTime = System.currentTimeMillis();
193
        long checkTime = System.currentTimeMillis();
Lines 225-230 Link Here
225
229
226
    @Override
230
    @Override
227
    public void restored() {
231
    public void restored() {
232
        initializeNow();
228
        TimeToFailure.logAction();
233
        TimeToFailure.logAction();
229
        deleteAnExcessiveAmountOfUIGestureHTMLFiles();
234
        deleteAnExcessiveAmountOfUIGestureHTMLFiles();
230
        Logger log = Logger.getLogger(UI_LOGGER_NAME);
235
        Logger log = Logger.getLogger(UI_LOGGER_NAME);

Return to bug 243208