|
From: snpe <sn...@sn...> - 2005-05-07 22:20:31
|
Hello,
=C2=A0 I get NPE for configSets (when dependencies beans are in different c=
onfig files).
This is patch and it work for me with eclipse 3.1M6 and webtools M4
=2D-- /u2/spring-ide/trunk/org.springframework.ide.eclipse.beans.ui.graph/s=
rc/org/springframework/ide/eclipse/beans/ui/graph/model/Bean.java 2005-04-1=
3 12:48:16.000000000 +0000
+++ org.springframework.ide.eclipse.beans.ui.graph/src/org/springframework/=
ide/eclipse/beans/ui/graph/model/Bean.java 2005-05-08 00:30:44.000000000 +0=
000
@@ -47,6 +47,8 @@
}
=20
public String getName() {
+ if (bean =3D=3D null)
+ return "empty";
return bean.getElementName();
}
=20
|