Editor reviews are provided by professional editors who evaluate a blog based on the following criteria: Frequency of Updates, Relevance of Content, Site Design, and Writing Style.
Just hit a NullPointerException in some code: public boolean isOwner() { return authManager.getUser().equals(blog.getOwner()); } Turns out, sometimes getUser() returns null. I started to retype this, then thought: "Can IntelliJ help me?" Answer: yes. Because of IntelliJ coolness, I click anywhere in the expression, type option-enter and choose 'Flip .equals()' and it rewrites the code to: public bo...
I've been working a bit with Ivy but finding it doesn't quite fit my needs (or that I have a lot more to learn). What I've found with Ivy is that it has its way of doing things, and part of The One True Path is that you should create a repository just for your organization ... they really hate the idea of depending on the central Maven repository. In any case, my need is to make it easy to build Ta...
The Good is that it does feel faster,and it now sports a UI that looks much more Mac native. The Bad is that many plugins don't work yet, such as FireBug! In addition, the Selenium support for Firefox is glitchy with the new release. Update: People are coming out of the woodwork to point me at the Firebug for FF3 ... check the comments!...
Here's an odd place to get a ClassCastException: org.hibernate.type.StringType.toString(StringType.java:44) org.hibernate.type.NullableType.nullSafeToString(NullableType.java:93) org.hibernate.type.NullableType.nullSafeSet(NullableType.java:140) org.hibernate.type.NullableType.nullSafeSet(NullableType.java:116) org.hibernate.param.NamedParameterSpecification.bind(NamedParameterSpecification.java:38...