将if语句转换为if-else

时间:2018-06-29 16:50:54

标签: java eclipse refactoring

当前在我的项目代码中,我在多个文件中有相同的句子

if( exceptionString != null ){
     //Logic here
}

我需要在所有文件中更新它,添加带有新任务的else块

  if( exceptionString != null ){
         //LOGIC
    }
  else{
        //NEW LOGIC
  }

可以在Eclipse中使用一些捷径吗?

如果eclipse不支持此任务,我正在考虑使用linux。

0 个答案:

没有答案