Skip to content

Commit

Permalink
Remove unneeded import, fix copy paste error
Browse files Browse the repository at this point in the history
  • Loading branch information
kristoff3r authored and nneonneo committed Jan 24, 2024
1 parent 78e12e8 commit 8e3b633
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/main/java/wasm/analysis/WasmAnalysis.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
import java.util.Map;

import ghidra.app.plugin.core.analysis.TransientProgramProperties;
import ghidra.app.plugin.core.analysis.TransientProgramProperties.PropertyValueSupplier;
import ghidra.app.plugin.core.analysis.TransientProgramProperties.SCOPE;
import ghidra.app.util.bin.BinaryReader;
import ghidra.app.util.bin.ByteArrayProvider;
Expand All @@ -41,11 +40,11 @@

public class WasmAnalysis {
/**
* Return persistent <code>ClassFileAnalysisState</code> which corresponds to
* Return persistent <code>WasmAnalysis</code> which corresponds to
* the specified program instance.
*
* @param program
* @return <code>ClassFileAnalysisState</code> for specified program instance
* @return <code>WasmAnalysis</code> for specified program instance
*/
public static synchronized WasmAnalysis getState(Program program) {
return TransientProgramProperties.getProperty(program, WasmAnalysis.class, SCOPE.PROGRAM, WasmAnalysis.class, () -> {
Expand Down

0 comments on commit 8e3b633

Please sign in to comment.