Changeset 7d349d3ccae8a07bf0da35fb242dce99a9e3a806
- Timestamp:
- 06/24/07 14:05:49
(1 year ago)
- Author:
- Christopher Jung <bktheg@web.de>
- git-committer:
- Christopher Jung <bktheg@web.de> 1182686749 +0200
- git-parent:
[7a2d453af35dcca82feb66bc4c5bdcd6352ad4e8]
- git-author:
- Christopher Jung <bktheg@web.de> 1182686749 +0200
- Message:
Zwei Methoden als deprecated markiert
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r69deede |
r7d349d3 |
|
| 2900 | 2900 | * @param shipdata Eine SQL-Ergebniszeile mit den daten des Schiffes |
|---|
| 2901 | 2901 | * @return die Typen-Daten |
|---|
| 2902 | | */ |
|---|
| | 2902 | * @deprecated Bitte die Klasse Ship direkt verwendet |
|---|
| | 2903 | */ |
|---|
| | 2904 | @Deprecated |
|---|
| 2903 | 2905 | public static ShipTypeData getShipType( SQLResultRow shipdata ) { |
|---|
| 2904 | 2906 | return getShipType(shipdata, false); |
|---|
| … | … | |
| 2921 | 2923 | * wie sie in der DB stehen (<code>true</code>)? |
|---|
| 2922 | 2924 | * @return die Typen-Daten |
|---|
| 2923 | | */ |
|---|
| | 2925 | * @deprecated Bitte die Klasse Ship direkt verwendet |
|---|
| | 2926 | */ |
|---|
| | 2927 | @Deprecated |
|---|
| 2924 | 2928 | public static ShipTypeData getShipType( SQLResultRow shipdata, boolean plaindata ) { |
|---|
| 2925 | 2929 | if( !shipdata.containsKey("type") || !shipdata.containsKey("status") ) { |
|---|