불필요한 @SuppressWarnings ( "unused") @SuppressWarnings코드에 대한 이클립스 의 주석에 대한 컴파일러 경고가 나타납니다 . @Override public boolean doSomething(@SuppressWarnings("unused") String whatever) throws AnException { throw new AnException("I'm still in bed and can't do anything until I've had a shower!"); } "unused"라는 단어 아래에 노란색 물결 선 모양이 있고 마우스를 가리키면 툴팁이 표시 Unnecessary @SuppressWarnings("unused")됩니다. 다른 개발자가 이클립스에 의해 이..