mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-13 12:05:21 +02:00
null property check
This commit is contained in:
parent
e0caa1b8f8
commit
d6d0a2fd83
1 changed files with 4 additions and 1 deletions
|
@ -609,7 +609,10 @@ public abstract class RemoteCmdSubSystem extends SubSystem implements IRemoteCmd
|
||||||
if (set != null)
|
if (set != null)
|
||||||
{
|
{
|
||||||
IProperty property = set.getProperty(COMMAND_SHELLS_MEMENTO);
|
IProperty property = set.getProperty(COMMAND_SHELLS_MEMENTO);
|
||||||
property.setValue(shellBuffer.toString());
|
if (property != null)
|
||||||
|
{
|
||||||
|
property.setValue(shellBuffer.toString());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue