Hani Suleiman
- Total activity 1008
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 380
-
Created 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... -
Created 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,... -
Created 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 ... -
Created 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. -
Created 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. -
Created RCOD (Red Circle of Doom)
Lately I've finding that I am getting angrier and angrier with the RCOD. I don't know if it's that time of the month, or if there's something more sinister at play, but the damn thing really really... -
Created Deleting plugins...permanently
Is anyone else annoyed by constantly having to delete plugins with every eap? I know I'll never need the tomcat, weblogic, starteam, or sourcesafe plugins, so the first thing I do with every eap is... -
Created 3311 Fun with cloning
Ahem, not that I want to teach you guys java or anything, but the openAPI has a rather silly method:com.intellij.j2ee.run.configuration.ServerModel implements Cloneable, and has the method: com.in... -
Created serialVersionUID error highlighting
Does anyone else find this particular error detector intensely annoying?I mean, I'd love to turn it on, but I keep naively expecting it to provide me with an intention action to actually create a s... -
Created intentions and concurrency
I've just noticed a very dangerous detection in IDEA, any thoughts on this?Consider this:if(this.blah != null){ Blah myblah = this.blah; if(myblah != null && xyz) { ....I might be mistaken, b...