1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-02 22:05:44 +02:00

NPE fix for Devin.

This commit is contained in:
John Camelon 2005-04-07 16:34:36 +00:00
parent 208aa6b61e
commit 1834447dce

View file

@ -470,6 +470,8 @@ public class DOMASTNodeLeaf implements IAdaptable {
}
private String getValueString(Object obj) {
if (obj == null) return NULL_STRING;
StringBuffer buffer = new StringBuffer();
if (obj.getClass().isPrimitive()) {