Changeset f2870eb27ee3252b56ac45c9391106cc4517ca84

Show
Ignore:
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
  • src/net/driftingsouls/ds2/server/cargo/HibernateCargoType.java

    r578ea8a rf2870eb  
    7373                String value = (String)Hibernate.STRING.nullSafeGet(rs, names[0]); 
    7474                 
    75                 if( value == null ) { 
     75                if( (value == null) || value.isEmpty() ) { 
    7676                        return new Cargo(); 
    7777                }