[ANN] AutoBoxingPlugin 0.4
Changes:
Added unboxing of wrapper classes to primitive types. For example,
int i = anInteger; => int i = anInteger.intValue();
boolean bool = aBoolean; => boolean bool = aBoolean.booleanValue();
short sh = aDouble; => short sh = aDouble.shortValue();
Plugin URL: http://www.intellij.org/twiki/bin/view/Main/AutoBoxingPlugin
/kesh
请先登录再写评论。