我正在修理和清理我的学校项目,我们应该使用" InspectCode" IntelliJ IDEA中的功能,并在返回项目之前修复所有警告。我在类别"声明冗余/未使用的声明/入口点下得到了一些警告。我不知道为什么。 "未使用声明的描述是:
"此检查报告指定检验范围内未使用或无法从入口点到达的类,方法或字段。"
IDEA抱怨的类,字段和方法都是使用/启动等。 项目运行,一切都按预期运行。
public enum Direction {
/**
* When the mob is set to move up.
*/
UP_DIR,
/**
* When the mob is set to move down.
*/
DOWN_DIR,
/**
* When the mob is set to move left.
*/LEFT_DIR, /**
* When the mob is set to move right.
*/RIGHT_DIR, /**
* When the mob is set to move upleft.
*/UPLEFT_DIR, /**
* When the mob is set to move upright.
*/UPRIGHT_DIR, /**
* When the mob is set to move downleft.
*/DOWNLEFT_DIR, /**
* When the mob is set to move downright.
*/DOWNRIGHT_DIR
}
另一个错误来自:
public static void main(String[] args) {
// Start the game
Game game = new Game();
game.start();
}
有没有办法去修复"我的代码所以我没有得到这些警告?
答案 0 :(得分:0)
将光标置于警告状态,然后按Alt + Enter