Opened 14 years ago
Last modified 14 years ago
#7734 closed enhancement
chaanged empty string check in Tile.putValue(...) and added documentation — at Version 2
| 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
Change History (3)
by , 14 years ago
comment:1 by , 14 years ago
| Description: | modified (diff) |
|---|
comment:2 by , 14 years ago
| Description: | modified (diff) |
|---|
Note:
See TracTickets
for help on using tickets.



the diff for the enhancement