Changeset f2870eb27ee3252b56ac45c9391106cc4517ca84
- Timestamp:
- 12/09/07 13:24:39
(1 year ago)
- Author:
- Christopher Jung <bktheg@web.de>
- git-committer:
- Christopher Jung <bktheg@web.de> 1197203079 +0100
- git-parent:
[177e8e0e65c9bcb48fbe6a3ab43081c2a9c47f16]
- git-author:
- Christopher Jung <bktheg@web.de> 1197203079 +0100
- Message:
Hibernate-Cargo-Typ: Ein leerer String entspricht nun dem leeren Cargo
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r578ea8a |
rf2870eb |
|
| 73 | 73 | String value = (String)Hibernate.STRING.nullSafeGet(rs, names[0]); |
|---|
| 74 | 74 | |
|---|
| 75 | | if( value == null ) { |
|---|
| | 75 | if( (value == null) || value.isEmpty() ) { |
|---|
| 76 | 76 | return new Cargo(); |
|---|
| 77 | 77 | } |
|---|