MCPcopy Create free account
hub / github.com/BombusMod/BombusMod / main

Method main

desktop/src/main/java/org/microemu/app/Main.java:213–231  ·  view source on GitHub ↗
(String args[])

Source from the content-addressed store, hash-verified

211 }
212
213 public static void main(String args[]) {
214 List params = new ArrayList();
215 StringBuffer debugArgs = new StringBuffer();
216 for (int i = 0; i < args.length; i++) {
217 params.add(args[i]);
218 if (debugArgs.length() != 0) {
219 debugArgs.append(", ");
220 }
221 debugArgs.append("[").append(args[i]).append("]");
222 }
223
224 try {
225 UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
226 } catch (Exception ex) {
227 logger.error("UI Error", ex);
228 }
229
230 new Main();
231 }
232
233}

Callers

nothing calls this directly

Calls 2

appendMethod · 0.80
addMethod · 0.45

Tested by

no test coverage detected