| Summary: | NPE compiling toplevel forms | ||||||
|---|---|---|---|---|---|---|---|
| Product: | z_Archived | Reporter: | Justin Spadea <jspadea> | ||||
| Component: | EDT | Assignee: | Project Inbox <edt.mofmodel-inbox> | ||||
| Status: | CLOSED FIXED | QA Contact: | |||||
| Severity: | normal | ||||||
| Priority: | P3 | CC: | pharmon | ||||
| Version: | unspecified | ||||||
| Target Milestone: | --- | ||||||
| Hardware: | PC | ||||||
| OS: | Linux | ||||||
| Whiteboard: | |||||||
| Attachments: |
|
||||||
|
Description
Justin Spadea
Created attachment 195148 [details]
Checks for a null container
Not sure if the patch I attached is all that's needed to fix this.
I made a small change to your patch. Here is the change that I made to FormImpl:
public String getMofSerializationKey() {
if (getContainer() == null) {
return super.getMofSerializationKey();
}
else {
return getContainer().getMofSerializationKey() + Type.NestedPartDelimiter + getName();
}
}
Verified in CVS 5/23 |