Java error when I did not affect my java

0
I am building a new part of my application, but when I am compiling I am getting the following error when i have made no changes to my java code:   Buildfile: M:\Mxnguyen\EducatorPLS-main_2\deployment\build_core.xml compile:     [javac] Compiling 813 source files to M:\Mxnguyen\EducatorPLS-main_2\deployment\run\bin     [javac] M:\Mxnguyen\EducatorPLS-main_2\javasource\_account\proxies\microflows\Microflows.java:117: error: cannot find symbol     [javac]             return result == null ? null : _account.proxies.Fingerprint.initialize(context, result);     [javac]                                                    ^     [javac]   symbol:   variable proxies     [javac]   location: variable _account of type Account     [javac] M:\Mxnguyen\EducatorPLS-main_2\javasource\_admissions\proxies\microflows\Microflows.java:1117: error: cannot find symbol     [javac]             return result == null ? null : _account.proxies.FingerprintApplication.initialize(context, result);     [javac]                                                    ^     [javac]   symbol:   variable proxies     [javac]   location: variable _account of type Account     [javac] M:\Mxnguyen\EducatorPLS-main_2\javasource\communitycommons\Misc.java:590: warning: [dep-ann] deprecated item is not annotated with @Deprecated     [javac]     public static boolean objectsAreEqual(Object left, Object right) {     [javac]                           ^     [javac] Note: Some input files use or override a deprecated API.     [javac] Note: Recompile with -Xlint:deprecation for details.     [javac] Note: M:\Mxnguyen\EducatorPLS-main_2\javasource\saml20\implementation\common\MendixUtils.java uses unchecked or unsafe operations.     [javac] Note: Recompile with -Xlint:unchecked for details.     [javac] 2 errors     [javac] 1 warning BUILD FAILED M:\Mxnguyen\EducatorPLS-main_2\deployment\build_core.xml:29: Compile failed; see the compiler error output for details. Total time: 9 seconds Does anyone have any troubleshooting tips?
asked
1 answers
0

Maybe, one of the fixes in 8.4.2 fixed the error that occurred.

Sometimes cleaning the deployment directory will also fix these type of errors.

answered