Fix outdated JavaDoc for DecompInterface.openProgram

The JavaDoc for the DecompInterface.openProgram method referenced an
obsolete second argument (language). Updated the documentation to
match the current method signature, which only takes a single
argument (program).

cc: @sheetjsdev
This commit is contained in:
Asad 2024-10-13 17:45:42 -04:00
parent 7d5a514f25
commit 1d11f8f133

View File

@ -59,7 +59,7 @@ import ghidra.util.task.TaskMonitor;
*
* // Setup up the actual decompiler process for a
* // particular program, using all the above initialization
* ifc.openProgram(program,language);
* ifc.openProgram(program);
*
* // Make calls to the decompiler:
* DecompileResults res = ifc.decompileFunction(func,0,taskmonitor);