Mikael Karlsson
- 活动总数 126
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 1
- 订阅数 55
-
创建于 return known value
After some refactoring I ended up with this code:It surprised me that IDEA didn't suggest to replace "return val"with "return null".I searched JIRA for an item but didn't manage to find one. Is it ... -
创建于 'I/O resource opened but safely closed' inspection
The closing part that goes in the finally block is a bitugly to look at:It's a nice candidate for a utility method, safeClose,or something. Unfortunately, the inspection doesn't understandthat safe... -
创建于 New refactoring: Reduce visibility
Maybe it's not a refactoring, but still...I have a non-private field in a class. I believe that thefield can be made private. How do I that, and make surethat I don't break anything?a) Type 'privat... -
创建于 Wish list for IDEA 6 :-)
How about an inspection/intention that can transform with A requirement is, of course, that foo is invariant./Mikael -
创建于 Is there a way to insert the current date/time when editing?
I want to insert the current time or date in my comment.Is there a way to do that?I could imagine a live template 'today' that used anexpression getCurrentDate() or something. Can I definemy own ex... -
创建于 Unscrambling stacktraces
Are there any plans to support unscrambling of other obfuscators than ZKM? -
创建于 Redistributing annotations.jar
First a question: If I use @Nullable and @NotNull whendeveloping my application, do I need to distribute theannotations.jar with my application?If that should be the case, maybe annotations.jar sho... -
创建于 Ideas for faster navigation
I thought I'd test this idea on you before making a formalrequest. Perhaps the request already exists?I would like to speed up a lot of the navigation in IDEA.We already have the excellent Go to im... -
创建于 Rerunning failed test cases
I'm thinking of submitting a feature request, but maybe italready exists.I've run my complete set of JUnit tests and a few have failed.I'm wondering if there's an easy way to rerun single failed JU... -
创建于 Using libraries from one JDK and running with another JDK?
Does anyone know if it's possible to have a project use thelibraries from one JDK, say 1.3.1, while using another JDK,say 5.0, for running/debugging?I want to make sure that I don't use any library...