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.

Bug 29084 - NPE in ServerChildren.updateKeys
Summary: NPE in ServerChildren.updateKeys
Status: VERIFIED FIXED
Alias: None
Product: serverplugins
Classification: Unclassified
Component: Infrastructure (show other bugs)
Version: 3.x
Hardware: PC Linux
: P3 blocker (vote)
Assignee: Nam Nguyen
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2002-11-28 10:16 UTC by pzajac
Modified: 2003-12-11 14:22 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments
exception stack trace (5.80 KB, text/plain)
2002-11-28 10:17 UTC, pzajac
Details

Note You need to log in before you can comment on or make changes to this bug.
Description pzajac 2002-11-28 10:16:19 UTC
NPE is trown because 
 public synchronized static ServerRegistry
getInstance() {
    //    if(instance == null) instance = new
ServerRegistry();
    //    return instance;
        //PENDING need to get this from lookup
        return (ServerRegistry)
Lookup.getDefault().lookup(ServerRegistry.class);
    }

returns null
Comment 1 pzajac 2002-11-28 10:17:37 UTC
Created attachment 8081 [details]
exception stack trace
Comment 2 pzajac 2002-11-28 10:19:07 UTC
[build 200211271836]
Comment 3 Petr Jiricka 2003-12-05 13:10:44 UTC
The code in question does no longer exist in the current build, so I
assume this is fixed.
Comment 4 pzajac 2003-12-10 12:06:41 UTC
verified