I renamed different things throughout a Java Maven project by appending text in front of "Remarks" text. I did this by searching for remarks and appending the text. I attempted to use refactoring but it didn't give me the option in VSCode.
Now I am getting an error message "cannot find symbol" across the renamed variables/methods. Below is part of the error message redacted.
194.5 [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile (default-compile) on project redacted-api: Compilation failure: Compilation failure:
194.5 [ERROR] /app/src/main/java/redacted/redacted/redacted/report/service/factory/ReportQueries.java:[258,31] cannot find symbol
194.5 [ERROR] symbol: method setTableredactedRemarks(java.util.List<redacted.redacted.redacted.report.model.redactedRepredactedRmk>,redacted.redacted.redacted.report.service.factory.attributes.ReportTable)
194.5 [ERROR] location: variable reportTableService of type redacted.redacted.redacted.report.service.ReportTableService
194.5 [ERROR] /app/src/main/java/redacted/redacted/redacted/report/service/factory/ReportQueries.java:[288,31] cannot find symbol
194.5 [ERROR] symbol: method setTableredactedRemarks(java.util.List<redacted.redacted.redacted.report.model.redactedRepredactedRmk>,redacted.redacted.redacted.report.service.factory.attributes.ReportTable)
194.5 [ERROR] location: variable reportTableService of type redacted.redacted.redacted.report.service.ReportTableService
194.5 [ERROR] /app/src/main/java/redacted/redacted/redacted/report/service/factory/ReportQueries.java:[319,31] cannot find symbol
Any idea on how to get the program to work with the bootstrap startup script that builds the Docker container? Thanks