From: kruland2607 Date: Fri, 24 Aug 2012 20:19:01 +0000 (+0000) Subject: Name the UpdateInfoFetcher thread. X-Git-Tag: upstream/12.09^2~25 X-Git-Url: https://git.gag.com/?p=debian%2Fopenrocket;a=commitdiff_plain;h=95297bffa2a0dba4a12c855e4fdd86a0bf6b1074 Name the UpdateInfoFetcher thread. git-svn-id: https://openrocket.svn.sourceforge.net/svnroot/openrocket/trunk@999 180e2498-e6e9-4542-8430-84ac67f01cd8 --- diff --git a/core/src/net/sf/openrocket/communication/UpdateInfoRetriever.java b/core/src/net/sf/openrocket/communication/UpdateInfoRetriever.java index 017f6add..799c2a3d 100644 --- a/core/src/net/sf/openrocket/communication/UpdateInfoRetriever.java +++ b/core/src/net/sf/openrocket/communication/UpdateInfoRetriever.java @@ -28,6 +28,7 @@ public class UpdateInfoRetriever { */ public void start() { fetcher = new UpdateInfoFetcher(); + fetcher.setName("UpdateInfoFetcher"); fetcher.setDaemon(true); fetcher.start(); }