본문 바로가기

Java & Intellij

IntelliJ(JAVA) "Variable 'that' is never used" 오류 해결 방법

 

강의 화면과 똑같이 작성했고 오류가 없음에도

"Variable ___ is never used" 외 여러 오류가 발생하여 검색해보았더니,

2006년에 작성된 IDE supports의 게시글을 발견할 수 있었다.

https://intellij-support.jetbrains.com/hc/en-us/community/posts/206337259--Variable-xxx-is-never-used-

 

해결 방법은 인텔리제이의 캐시 삭제

The problem indeed seem to be caused by exception you've mentioned. The workaround
would be to wipe out caches directory (usualy at %USER_HOME%\.IntelliJIDEA50\system\caches)
and restart IDEA.

 

경로를 찾는 것보단 자체적인 캐시 삭제 기능을 활용하면 좋다.

File -> Invalidate Caches... -> Invalidate and Restart 눌러주면 끝

 

자동으로 인텔리제이가 재시작되며, 오류가 사라졌음을 확인할 수 있었다.