Skip to content

Commit

Permalink
拼写错误修改
Browse files Browse the repository at this point in the history
  • Loading branch information
z529192557 committed Jul 7, 2020
1 parent b4e467f commit bc94354
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ public class JvmSandbox {
/**
* 需要提前加载的sandbox工具类
*/
private final static List<String> earlyLoadSndboxClassNameList = new ArrayList<String>();
private final static List<String> earlyLoadSandboxClassNameList = new ArrayList<String>();

static {
earlyLoadSndboxClassNameList.add("com.alibaba.jvm.sandbox.core.util.SandboxClassUtils");
earlyLoadSndboxClassNameList.add("com.alibaba.jvm.sandbox.core.util.matcher.structure.ClassStructureImplByAsm");
earlyLoadSandboxClassNameList.add("com.alibaba.jvm.sandbox.core.util.SandboxClassUtils");
earlyLoadSandboxClassNameList.add("com.alibaba.jvm.sandbox.core.util.matcher.structure.ClassStructureImplByAsm");
}

private final CoreConfigure cfg;
Expand Down Expand Up @@ -53,7 +53,7 @@ private void init() {
* 提前加载某些必要的类
*/
private void doEarlyLoadSandboxClass() {
for(String className : earlyLoadSndboxClassNameList){
for(String className : earlyLoadSandboxClassNameList){
try {
Class.forName(className);
} catch (ClassNotFoundException e) {
Expand Down

0 comments on commit bc94354

Please sign in to comment.