Hani Suleiman
- 活动总数 1008
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 0
- 订阅数 380
-
创建于 OSX fslogger
Do we still need to run this manually on new versions?Also, any chance you guys could provide a universal binary of it, so us poor macbook pro owners can have even more fun? -
创建于 Subversion sllooooowww
Just when I thought subversion from IDEA couldn't get any slower, it went and did it!Up to 4121, it was just normal slow. As in, if you try commit project in a project with 12 modules and a couple ... -
创建于 sneaky intentions bug...
Here's a fun one:Integer.intValue() + "-" + 12The single char string to char intention will helpfully suggest you replace the "-" with '-', which would, potentially, cause a showstopper bug, a high... -
创建于 annotation completion
I've noticed that enums inside of annotations don't show available values, is this deliberate, a bug, or just a freak consistent accident that only affects me?An example is the ejb3 annotations, if... -
创建于 Custom icons
How can I specify the file editor icon for a particular type of file? Ideally I'd like to be able to plug in something that gets a PsiFile/PsiClass, and return an Icon for that. -
创建于 Late night PSI fun
Some PSI question, apologies if these are basic questions that are blindingly obvious. I couldn't find any docs after a cursory search:1) Given a PsiClass that extends Class X, how do I make it not... -
创建于 String concat in a loop annoyance
Does anyone find this inspection to be a bit..dumb?I have code like this in a number of places:for(item : items) collection.add(prefix + item);This looks like a perfectly legitimate practice to me,... -
创建于 PluginManager calls
When I try to call PluginManager (to get at the classpath for my plugin), I always get the exception below. Nowhere in my project so I have 'com.intellij.component' so I'm rather baffled as to how ... -
创建于 Default JDK on OSX
...is 1.4. Is there any reason why the Info.plist file isn't changed to 1.5+?In theory, it shouldn't matter, but in practice it does. For example, it becomes impossible to create a 1.5 plugin JVM. -
创建于 Looking up annotations
How do I look up annotations on a class or method? I can figure out if a given PsiClass is an annotation, but I also need to be able to look up the annotations specified on a given field/method/class.