1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-25 18:05:33 +02:00

Fix for bug 82858: NPE when adding global variable to variable view.

This commit is contained in:
Mikhail Khodjaiants 2005-01-19 00:12:14 +00:00
parent 796d57cf24
commit b0fe8a0287
3 changed files with 9 additions and 4 deletions

View file

@ -1,3 +1,8 @@
2005-01-18 Mikhail Khodjaiants
Fix for bug 82858: NPE when adding global variable to variable view.
* CDebugTarget.java
* CVariableFactory.java
2005-01-18 Mikhail Khodjaiants
Fix for bug 82800: Make "Resume At Line" action retargettable.
CDebugElement should provide an adapter to ICDebugTarget.

View file

@ -42,7 +42,7 @@ public class CVariableFactory {
}
public IPath getPath() {
return path;
return ( path != null ) ? path : new Path( "" ); //$NON-NLS-1$
}
public String toString() {