Browse Source

Fix typo in TypeChecker

Should be "bad field access" not "bad filed access".
tags/rel_3_28_0_ga
Bartosz Firyn 4 years ago
parent
commit
5e6b5b27de
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/main/javassist/compiler/TypeChecker.java

+ 1
- 1
src/main/javassist/compiler/TypeChecker.java View File

} }
} }


throw new CompileError("bad filed access");
throw new CompileError("bad field access");
} }


private CtField fieldAccess2(Expr e, String jvmClassName) throws CompileError { private CtField fieldAccess2(Expr e, String jvmClassName) throws CompileError {

Loading…
Cancel
Save