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