Skip to content

Commit

Permalink
Removing the unused WasmContext.Uid.
Browse files Browse the repository at this point in the history
  • Loading branch information
iamstolis committed Jul 22, 2021
1 parent 3189ea3 commit e862256
Showing 1 changed file with 0 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@
import java.util.Map;

public final class WasmContext {
private final Uid uid;
private final Env env;
private final WasmLanguage language;
private final Map<SymbolTable.FunctionType, Integer> equivalenceClasses;
Expand All @@ -69,7 +68,6 @@ public static WasmContext getCurrent() {
}

public WasmContext(Env env, WasmLanguage language) {
this.uid = new Uid();
this.env = env;
this.language = language;
this.equivalenceClasses = new HashMap<>();
Expand All @@ -84,10 +82,6 @@ public WasmContext(Env env, WasmLanguage language) {
instantiateBuiltinInstances();
}

public Uid uid() {
return uid;
}

public Env environment() {
return env;
}
Expand Down Expand Up @@ -204,6 +198,4 @@ public void reinitInstance(WasmInstance instance, boolean reinitMemory) {
}
}

public class Uid {
}
}

0 comments on commit e862256

Please sign in to comment.