Oh well, I also installed that update as it appeared on the Software Update Server. It could well be that it started with that update. Meanwhile I got a tip from Roger Kapsi to force the Java garbage collection regularly, and indeed that appears to help. I added this to my LimeWire.bsh file:
Code:
class testGC extends ManagedThread {
testGC() {
super("testGC");
}
public void managedRun() {
try {
Thread.sleep(10*1000);
System.gc();
} catch (Throwable ex) {
error(ex);
}
}
}