1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-08 18:26:01 +02:00

Fixed NPE in FunctionDeclaration.

This commit is contained in:
Doug Schaefer 2003-03-26 16:10:35 +00:00
parent dd13b8fe53
commit ec58acd398

View file

@ -27,7 +27,10 @@ public class FunctionDeclaration extends SourceManipulation implements IFunction
}
public String getReturnType(){
if (returnType != null)
return returnType;
else
return "";
}
public void setReturnType(String type){