Modify ↓
Opened 12 months ago
Closed 12 months ago
#7734 closed enhancement (fixed)
changed empty string check in Tile.putValue(...) and added documentation
| Reported by: | Locked | Owned by: | team |
|---|---|---|---|
| Priority: | normal | Component: | Core |
| Version: | Keywords: | ||
| Cc: |
Description (last modified by Locked)
Changed the sanity check
if (value == null || "".equals(value)) {
if (value == null || value.isEmpty()) {
and added some javadocs
Attachments (1)
Change History (6)
Changed 12 months ago by Locked
comment:1 Changed 12 months ago by Locked
- Description modified (diff)
comment:2 Changed 12 months ago by Locked
- Description modified (diff)
comment:3 Changed 12 months ago by Locked
- Summary changed from chaanged empty string check in Tile.putValue(...) and added documentation to changed empty string check in Tile.putValue(...) and added documentation
comment:4 Changed 12 months ago by simon04
Thank you for contributing some documentation. If possible, please aggregate some changes in order to ease the process. :-)
comment:5 Changed 12 months ago by simon04
- Resolution set to fixed
- Status changed from new to closed
Fixed in [o28411].
Note: See
TracTickets for help on using
tickets.



the diff for the enhancement