Changes between Version 1 and Version 2 of Ticket #7734


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

Legend:

Unmodified
Added
Removed
Modified
  • TabularUnified Ticket #7734 – Description

    v1 v2  
    11Changed the sanity check
    2 from        if (value == null || "".equals(value)) {
    3 to          if (value == null || value.isEmpty()) {
     2
     3{{{ if (value == null || "".equals(value)) {}}}
     4
     5{{{ if (value == null || value.isEmpty()) { }}}
    46
    57and added some javadocs