Changes between Initial Version and Version 1 of Ticket #7734


Ignore:
Timestamp:
2012-05-28T12:18:36+02:00 (13 years ago)
Author:
Locked
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #7734 – Description

    initial v1  
    11Changed the sanity check
    2 -        if (value == null || "".equals(value)) {
    3 +        if (value == null || value.isEmpty()) {
     2from        if (value == null || "".equals(value)) {
     3to          if (value == null || value.isEmpty()) {
    44
    55and added some javadocs