Mikael Karlsson

Avatar
  • Total activity 126
  • Last activity
  • Member since
  • Following 0 users
  • Followed by 0 users
  • Votes 1
  • Subscriptions 55
  • Created

    Refactoring libraries

    During the development of a shared library it may happen that the externalinterface has to change, for example by renaming a method. This is of courseeasy to do with a Rename refactoring. (Obviousl...
    • 4 followers
    • 3 comments
    • 0 votes
  • Created

    Close+Go Back (like Spring-loaded folders)

    Quite often I find myself digging down through multiple levels of definitionsusing Go to definition. Then I want to go back up to the starting point whileclosing all the windows that I opened going...
    • 1 follower
    • 0 comments
    • 0 votes
  • Created

    A what-if analyzer for code

    Here's something cool I'd like to have:A live what-if functionality for testing code.Right now I'm trying to do some simple math, like this: int updatesPerSec = 3000; long batchesPerSec = updat...
    • 2 followers
    • 1 comment
    • 0 votes
  • Created

    Missing inspection for infinite loop

    I was surprised to discover that IDEA has nothing to say about this code: int count = 0; while (count < 10) { System.out.println("count = " + count); }I guess it wouldn't be too hard to ...
    • 4 followers
    • 8 comments
    • 0 votes