()
| 68 | if (isAllowed()) { |
| 69 | new Thread(new Runnable() { |
| 70 | public void run() { |
| 71 | try { |
| 72 | Thread.sleep(5 * 1000); // give the PDE time to get rolling |
| 73 | updateCheck(); |
| 74 | |
| 75 | } catch (Exception e) { |
| 76 | // This can safely be ignored, too many situations where no net |
| 77 | // connection is available that behave in strange ways. |
| 78 | // Covers likely IOException, InterruptedException, and any others. |
| 79 | } |
| 80 | } |
| 81 | }, "Update Checker").start(); |
| 82 | } |
| 83 | } |
nothing calls this directly
no test coverage detected