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

(-)a/openide.util.lookup/src/org/openide/util/lookup/implspi/AbstractServiceProviderProcessor.java (+3 lines)
Lines 50-55 Link Here
50
import java.io.OutputStreamWriter;
50
import java.io.OutputStreamWriter;
51
import java.io.PrintWriter;
51
import java.io.PrintWriter;
52
import java.lang.annotation.Annotation;
52
import java.lang.annotation.Annotation;
53
import java.nio.file.NoSuchFileException;
53
import java.util.ArrayList;
54
import java.util.ArrayList;
54
import java.util.HashMap;
55
import java.util.HashMap;
55
import java.util.List;
56
import java.util.List;
Lines 235-240 Link Here
235
                    }
236
                    }
236
                } catch (FileNotFoundException x) {
237
                } catch (FileNotFoundException x) {
237
                    // OK, created for the first time
238
                    // OK, created for the first time
239
                } catch (NoSuchFileException x) {
240
                    // OK, created for the first time
238
                }
241
                }
239
            } catch (IOException x) {
242
            } catch (IOException x) {
240
                processingEnv.getMessager().printMessage(Kind.ERROR, x.toString());
243
                processingEnv.getMessager().printMessage(Kind.ERROR, x.toString());

Return to bug 253529