fix typo in class name

This commit is contained in:
Volker Berlin 2022-01-02 18:20:34 +01:00
parent 39f714a50c
commit 2fa6dfedf8
2 changed files with 4 additions and 4 deletions

View File

@ -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;

View File

@ -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() );
}
/**