Hi,
I'd like to know how to null out every property values of a category except one (without needing to know in advance the full list of properties).
Here's a simple case in PHP:
echo "net.java.sip.communicator.impl.protocol=\${null}\n";
The above deletes all
net.java.sip.communicator.impl.protocol* values on the client.
However, I'd like to leave a specific property untouched, such as:
net.java.sip.communicator.impl.protocol.whatever.specificprop
Is there a way to do this?
Thanks,
Vieri