Vincent Mallet

- Total activity 36
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 14
-
Created 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... -
Created 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... -
Created 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... -
Created 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... -
Created 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...