Skip to content

Commit

Permalink
target is Java5, replaced String#isEmpty() signature
Browse files Browse the repository at this point in the history
  • Loading branch information
simonetripodi committed Dec 31, 2010
1 parent 7bd3cf6 commit bb72a96
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public void testLoadLazyImmutablePOJO() {

assertEquals(POJO_ID, pojo.getId());
assertNotNull("Description should not be null.", pojo.getDescription());
assertFalse("Description should not be empty.", pojo.getDescription().isEmpty());
assertFalse("Description should not be empty.", pojo.getDescription().length() == 0);
} finally {
session.close();
}
Expand Down

0 comments on commit bb72a96

Please sign in to comment.