如何在Android Studio上消除多个相似的拆箱警告?

huangapple go评论71阅读模式
英文:

How do I remove multiple similar unboxing warnings on Android Studio?

问题

我在Android Studio中有200多个来自自动生成代码的警告。

不必要的装箱 'Integer.valueOf(0)'
移除装箱 Alt+Shift+Enter

如何消除这些警告消息?

英文:

I have 200+ warnings on Android Studio from automatically generated code.

Unnecessary boxing 'Integer.valueOf(0)'
Remove boxing *Alt+Shift+Enter*

How do you get rid of these warning messages?

答案1

得分: 1

打开“在路径中替换”对话框(CTRL+SHIFT+R

  1. 在复选框旁边勾选“正则表达式”
  2. 在第一个输入区域键入Integer.valueOf\(([0-9]+)\)
  3. 在第二个输入区域键入$1
  4. 点击“全部替换”按钮
英文:

Open Replace in Path dialog (<kbd>CTRL</kbd>+<kbd>SHIFT</kbd>+<kbd>R</kbd>)

  1. Check at Regex checkbox
  2. Type Integer.valueOf\(([0-9]+)\) at the first input area
  3. Type $1 at the second input area
  4. Click REPLACE ALL

huangapple
  • 本文由 发表于 2020年10月5日 15:38:38
  • 转载请务必保留本文链接:https://go.coder-hub.com/64204294.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定