MCPcopy Create free account
hub / github.com/MTrop/DoomTools / call

Method call

src/main/java/net/mtrop/doom/tools/WadScriptMain.java:1528–1536  ·  view source on GitHub ↗

Calls the utility using a set of options. @param options the options to call with. @return the error code.

(Options options)

Source from the content-addressed store, hash-verified

1526 * @return the error code.
1527 */
1528 public static int call(Options options)
1529 {
1530 try {
1531 return (int)(asCallable(options).call());
1532 } catch (Exception e) {
1533 e.printStackTrace(options.stderr);
1534 return ERROR_UNKNOWN;
1535 }
1536 }
1537
1538 /**
1539 * Creates a {@link Callable} for this utility.

Callers 4

executeTargetMethod · 0.95
mainMethod · 0.95
executeMethod · 0.95
callMethod · 0.45

Calls 1

asCallableMethod · 0.95

Tested by

no test coverage detected