Michael Kay
- Total activity 24
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 9
-
-
Michael Kay commented, -
-
Michael Kay created a post, AnsweredShelving a set of breakpoints
It would be nice to be able to save the current set of breakpoints somewhere, clearing them all, but in such a way that they can later be reinstated. I'm thinking of the situation where you're doin... -
Michael Kay created a post, File corruption - application settings
IntelliJ 10.5.2 on Mac.I'm getting this when I do "Edit Configurations":Caused by: java.io.IOException: Corrupted records: storageLength=6,452,924 recordsLength=6,452,916 recordSize=20 at com.intel... -
-
-
Michael Kay created a post, Problems loading an existing GWT application
I'm trying to load an existing working GWT application into IntelliJ. (In fact, it was originally developed under IntelliJ, then moved to Eclipse, and now I want to move it back).I've created the p... -
Michael Kay created a post, Structural Search/Replace on Mac
I'm running IntelliJ Ultimate 10.5.2 on Mac OS/X. The Structural Search/Replace menu items aren't listed in the Search menu. They are present on a colleague's installation of the same version on Ub... -
Michael Kay created a post, Define a @NotNull getter for a @Nullable field
I commonly have a field that may be null, and a getter method that tests whether the field is null, and if so, initializes it. For example@Nullable private PrintStream outputDestination = null;@Not...