Changeset 4109
- Timestamp:
- Jan 30, 2008, 1:01:06 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/core/net/sf/basedb/core/BlockInfo.java
r3679 r4109 70 70 71 71 /** 72 Create a new block info using meta coordinates.73 @param block The block number which must be greater than 072 Create a new block info using meta coordinates. 73 @param block The block number which must be greater or equal than 0 74 74 @param metaGridX The row or x meta coordinate, use 0 if unknown 75 75 @param metaGridY The column or y meta coordinate, use 0 if unknown … … 79 79 throws InvalidDataException 80 80 { 81 if (block < = 0) throw new NumberOutOfRangeException("block", block, 1, false);81 if (block < 0) throw new NumberOutOfRangeException("block", block, 0, false); 82 82 this.block = block; 83 83 this.metaGridX = metaGridX;
Note: See TracChangeset
for help on using the changeset viewer.