1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Added missing return.

This commit is contained in:
Pawel Piech 2008-11-10 19:41:24 +00:00
parent 93595b208c
commit d2dd59a361

View file

@ -467,6 +467,7 @@ public class PDAExpressions extends AbstractDsfService implements ICachingServic
}
} catch (NumberFormatException e) {
PDAPlugin.failRequest(rm, INVALID_HANDLE, "Value not formatted properly");
return;
}
final String exprValue = value != null ? value : formattedExprValue;