]> source.dussan.org Git - javassist.git/commitdiff
Fix typo in TypeChecker 307/head
authorBartosz Firyn <bartoszfiryn@gmail.com>
Thu, 26 Mar 2020 20:30:06 +0000 (21:30 +0100)
committerGitHub <noreply@github.com>
Thu, 26 Mar 2020 20:30:06 +0000 (21:30 +0100)
Should be "bad field access" not "bad filed access".

src/main/javassist/compiler/TypeChecker.java

index 9e01d0a1c077e1f216702757475969e5f5f04938..ec7e3cf3a941032e411c7630186ccde9b9bfa0c3 100644 (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 {