MCPcopy
hub / github.com/Col-E/Recaf / run

Method run

src/main/java/me/coley/recaf/control/Controller.java:74–84  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

72 }
73
74 @Override
75 public void run() {
76 // Load workspace
77 try {
78 loadInitialWorkspace();
79 } catch(Exception ex) {
80 error(ex, "Error loading workspace from file: " + initialWorkspace);
81 }
82 // Call startup plugins
83 PluginsManager.getInstance().ofType(StartupPlugin.class).forEach(plugin -> plugin.onStart(this));
84 }
85
86 /**
87 * Try to load the passed initial workspace

Callers

nothing calls this directly

Calls 5

loadInitialWorkspaceMethod · 0.95
getInstanceMethod · 0.95
ofTypeMethod · 0.80
onStartMethod · 0.65
errorMethod · 0.45

Tested by

no test coverage detected