Mikael Karlsson
- Total activity 126
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 55
-
Created 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 ... -
Created '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... -
Created 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... -
Created Wish list for IDEA 6 :-)
How about an inspection/intention that can transform with A requirement is, of course, that foo is invariant./Mikael -
Created 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... -
Created Unscrambling stacktraces
Are there any plans to support unscrambling of other obfuscators than ZKM? -
Created 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... -
Created 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... -
Created 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... -
Created 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...