我正在使用eclipse Luna 4.4 我认为它并没有向我显示死代码的警告。
显示错误
if(false){
// Shows warning for dead code here
System.out.println("Dead Code");
}
但如果我说
,它就不会显示任何警告boolean b = false;
if(b){
// Doesn't show warning for dead code here
System.out.println("Dead Code");
}
不知何故,我有一点记忆,它在以前的版本上发出警告,不知道究竟是哪一个。
一旦我做了
boolean b = false;
// code here
// forgot to make it true in some case
if(b){// do things here} // this gave me warning.
有人知道这里发生了什么,或者是否有任何可以做到这一点的偏好设置。提前谢谢。