public int getFreezeColumns() {
Integer currentValue = (Integer) checkValueBinding("freezeColumns", this.freezeColumns);
if (currentValue != null) {
return currentValue;
}
return 0;
}
FindBugs 说:
一个基元被装箱,然后立即拆箱。这可能是由于在需要未装箱值的地方进行了手动装箱,从而迫使编译器立即撤消装箱工作。
我怎么可能解决这个问题?