MCPcopy Index your code
hub / github.com/processing/processing / run

Method run

app/src/processing/app/UpdateCheck.java:70–80  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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 }

Callers

nothing calls this directly

Calls 1

updateCheckMethod · 0.95

Tested by

no test coverage detected