Vincent Mallet
- 活动总数 36
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 1
- 订阅数 14
-
创建于 Good code gray with conditional operator: bug?
Consider the following code: private @Nullable Integer foo(@Nullable String s, @Nullable Integer i) { return s == null? i : (Integer) 2; } IDEA highlights the "(In... -
创建于 Fix idea.properties override on Mac... please?
I'm hoping to lobby for IDEA-100680...On Mac OS X the idea.properties override mechanism doesn't work because of some typo somewhere in the idea source where IDEA looks for "idea.properites" (see t... -
创建于 Writing plugin for IDL-like language
I have a simple IDL-like language that I run through a processor to produce java classes that I can then reference from the java world.I'd like to write a simple plugin to make my life easier in ID... -
创建于 Typo in release highlights page
http://www.jetbrains.com/idea/features/newfeatures.html"Dataflow to This - see the where an arbitrary parameter value comes from": see the where? :)"Completely new Conigure Plugins wizard that lets... -
创建于 Should I really be single threaded? ;-)
There's a concept I can't quite grasp in IDEA yet: everytime I redo an operation, the previous results for the same operation are lost. Typically, if I run the same configuration twice, the results...