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

@@ -933,7 +933,7 @@ public class TypeChecker extends Visitor implements Opcode, TokenId {
}
}

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

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

Loading…
Cancel
Save