mirror of
https://github.com/i-net-software/JWebAssembly.git
synced 2025-03-15 02:44:47 +01:00
fix typo in class name
This commit is contained in:
parent
39f714a50c
commit
2fa6dfedf8
@ -46,7 +46,7 @@ import de.inetsoftware.jwebassembly.wasm.WasmBlockOperator;
|
||||
* @author Volker Berlin
|
||||
*
|
||||
*/
|
||||
class BranchManger {
|
||||
class BranchManager {
|
||||
|
||||
private final ArrayList<ParsedBlock> allParsedOperations = new ArrayList<>();
|
||||
|
||||
@ -75,7 +75,7 @@ class BranchManger {
|
||||
* @param localVariables
|
||||
* the local variables
|
||||
*/
|
||||
public BranchManger( WasmOptions options, List<WasmInstruction> instructions, LocaleVariableManager localVariables ) {
|
||||
public BranchManager( WasmOptions options, List<WasmInstruction> instructions, LocaleVariableManager localVariables ) {
|
||||
this.options = options;
|
||||
this.instructions = instructions;
|
||||
this.localVariables = localVariables;
|
@ -48,7 +48,7 @@ import de.inetsoftware.jwebassembly.wasm.WasmBlockOperator;
|
||||
*/
|
||||
class JavaMethodWasmCodeBuilder extends WasmCodeBuilder {
|
||||
|
||||
private BranchManger branchManager;
|
||||
private BranchManager branchManager;
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
@ -56,7 +56,7 @@ class JavaMethodWasmCodeBuilder extends WasmCodeBuilder {
|
||||
@Override
|
||||
void init( WasmOptions options, ClassFileLoader classFileLoader ) {
|
||||
super.init( options, classFileLoader );
|
||||
this.branchManager = new BranchManger( options, getInstructions(), getLocalVariables() );
|
||||
this.branchManager = new BranchManager( options, getInstructions(), getLocalVariables() );
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user