]> source.dussan.org Git - jackcess.git/commitdiff
cleanup variety of compiler warnings
authorJames Ahlborn <jtahlborn@yahoo.com>
Mon, 3 Mar 2008 19:36:35 +0000 (19:36 +0000)
committerJames Ahlborn <jtahlborn@yahoo.com>
Mon, 3 Mar 2008 19:36:35 +0000 (19:36 +0000)
git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@247 f203690c-595d-4dc9-a70b-905162fa7fd2

src/java/com/healthmarketscience/jackcess/ByteUtil.java
src/java/com/healthmarketscience/jackcess/Column.java
src/java/com/healthmarketscience/jackcess/Cursor.java
src/java/com/healthmarketscience/jackcess/DataType.java
src/java/com/healthmarketscience/jackcess/Database.java
src/java/com/healthmarketscience/jackcess/Index.java
src/java/com/healthmarketscience/jackcess/JetFormat.java
src/java/com/healthmarketscience/jackcess/PageChannel.java
src/java/com/healthmarketscience/jackcess/Table.java
src/java/com/healthmarketscience/jackcess/UsageMap.java

index 29ddecd15f1f6819368b42432ec10c08bfd24b93..dacc40447524c2bd7f7cf829a7ec97bb617b9a56 100644 (file)
@@ -252,9 +252,9 @@ public final class ByteUtil {
       byte h = (byte) (b & 0xF0);
       h = (byte) (h >>> 4);
       h = (byte) (h & 0x0F);
-      rtn.append(HEX_CHARS[(int) h]);
+      rtn.append(HEX_CHARS[h]);
       h = (byte) (b & 0x0F);
-      rtn.append(HEX_CHARS[(int) h]);
+      rtn.append(HEX_CHARS[h]);
 
       if (formatted == true)
       {
index e62898420018fc082ab21733877ed4a8aa2ed42d..3b0f3cf013500bc869df809b38f3bdf1c9501107 100644 (file)
@@ -148,7 +148,6 @@ public class Column implements Comparable<Column> {
    * @param table owning table
    * @param buffer Buffer containing column definition
    * @param offset Offset in the buffer at which the column definition starts
-   * @param format Format that the containing database is in
    */
   public Column(Table table, ByteBuffer buffer, int offset)
     throws IOException
@@ -420,8 +419,6 @@ public class Column implements Comparable<Column> {
 
   /**
    * @param lvalDefinition Column value that points to an LVAL record
-   * @param outType optional 1 element array for returning the
-   *                <code>LONG_VALUE_TYPE_*</code>
    * @return The LVAL data
    */
   private byte[] readLongValue(byte[] lvalDefinition)
@@ -530,7 +527,7 @@ public class Column implements Comparable<Column> {
   /**
    * Decodes "Currency" values.
    * 
-   * @param valueBytes Column value that points to currency data
+   * @param buffer Column value that points to currency data
    * @return BigDecimal representing the monetary value
    * @throws IOException if the value cannot be parsed 
    */
@@ -661,7 +658,7 @@ public class Column implements Comparable<Column> {
       long time = ((Date)value).getTime();
       time += getTimeZoneOffset(time);
       time += MILLIS_BETWEEN_EPOCH_AND_1900;
-      double dTime = ((double)time) / MILLISECONDS_PER_DAY;
+      double dTime = time / MILLISECONDS_PER_DAY;
       buffer.putDouble(dTime);
     }
   }
@@ -1099,7 +1096,7 @@ public class Column implements Comparable<Column> {
   public String toString() {
     StringBuilder rtn = new StringBuilder();
     rtn.append("\tName: " + _name);
-    rtn.append("\n\tType: 0x" + Integer.toHexString((int)_type.getValue()) +
+    rtn.append("\n\tType: 0x" + Integer.toHexString(_type.getValue()) +
                " (" + _type + ")");
     rtn.append("\n\tNumber: " + _columnNumber);
     rtn.append("\n\tLength: " + _columnLength);
index 6ca0c84efe495f5245ae845e68d4ec2540625e02..28d848a3af6ed7d06c2841c512b7ff603e77b923 100644 (file)
@@ -775,7 +775,6 @@ public abstract class Cursor implements Iterable<Map<String, Object>>
 
   /**
    * Returns the current row in this cursor (Column name -> Column value).
-   * @param columnNames Only column names in this collection will be returned
    */
   public Map<String, Object> getCurrentRow()
     throws IOException
index eac9bd85d56c06b193a4d32fba77329f6ca0c8f3..1dc97abe0a73368606ea3b39ffe60ae86f6acd6e 100644 (file)
@@ -204,9 +204,8 @@ public enum DataType {
   public int getFixedSize() {
     if(_fixedSize != null) {
       return _fixedSize;
-    } else {
-      throw new IllegalArgumentException("FIX ME");
     }
+    throw new IllegalArgumentException("FIX ME");
   }
 
   public int getMinSize() {
@@ -224,9 +223,8 @@ public enum DataType {
   public int getSQLType() throws SQLException {
     if (_sqlType != null) {
       return _sqlType;
-    } else {
-      throw new SQLException("Unsupported data type: " + toString());
     }
+    throw new SQLException("Unsupported data type: " + toString());
   }
 
   public int getMinScale() {
@@ -277,9 +275,8 @@ public enum DataType {
     DataType rtn = DATA_TYPES.get(b);
     if (rtn != null) {
       return rtn;
-    } else {
-      throw new IOException("Unrecognized data type: " + b);
     }
+    throw new IOException("Unrecognized data type: " + b);
   }
   
   public static DataType fromSQLType(int sqlType)
index d1f1e2b14266c9d9aef8d23b83ce18dbb663bfa7..84acf518ba783f904f37e846f610f387adf786b7 100644 (file)
@@ -44,6 +44,7 @@ import java.sql.SQLException;
 import java.util.ArrayList;
 import java.util.Arrays;
 import java.util.Collection;
+import java.util.ConcurrentModificationException;
 import java.util.Date;
 import java.util.HashMap;
 import java.util.HashSet;
@@ -273,7 +274,7 @@ public class Database
     FileChannel channel = openChannel(mdbFile, false);
     channel.transferFrom(Channels.newChannel(
         Thread.currentThread().getContextClassLoader().getResourceAsStream(
-        EMPTY_MDB)), 0, (long) Integer.MAX_VALUE);
+            EMPTY_MDB)), 0, Integer.MAX_VALUE);
     return new Database(channel, autoSync);
   }
   
index 88eff7bc235a6422fbe78247cef2d78c79a9db3a..9c5639ebf321153d3ad3430ddb73294e5da7e797 100644 (file)
@@ -960,8 +960,8 @@ public class Index implements Comparable<Index> {
     /**
      * Create a new entry
      * @param values Indexed row values
-     * @param page Page number on which the row is stored
-     * @param rowNumber Row number at which the row is stored
+     * @param rowId rowId in which the row is stored
+     * @param columns map of columns for this index
      */
     private Entry(Object[] values, RowId rowId,
                   Map<Column, Byte> columns)
index a9e96daf2adff279fa8bc2a41950783cce410819..a38f7afab5f975e832d23ea3b954a06b3452cfea 100644 (file)
@@ -138,9 +138,8 @@ public abstract class JetFormat {
     byte version = buffer.get();
     if (version == CODE_VERSION_4) {
       return VERSION_4;
-    } else {
-      throw new IOException("Unsupported version: " + version);
     }
+    throw new IOException("Unsupported version: " + version);
   }
   
   private JetFormat(String name) {
index b5301aa7593b6c1a937f1ca13a6c13c06594fd40..cd4bd43fa49cc346a3b074aaf5a5cb14949f61bf 100644 (file)
@@ -146,7 +146,7 @@ public class PageChannel implements Channel, Flushable {
     page.rewind();
     page.position(pageOffset);
     _channel.write(page, (((long) pageNumber * (long) getFormat().PAGE_SIZE) +
-                          (long) pageOffset));
+                          pageOffset));
     if(_autoSync) {
       flush();
     }
@@ -177,7 +177,7 @@ public class PageChannel implements Channel, Flushable {
 
   /**
    * Allocates a new page in the database.  Data in the page is undefined
-   * until it is written in a call to {@link #writePage}.
+   * until it is written in a call to {@link #writePage(ByteBuffer,int)}.
    */
   public int allocateNewPage() throws IOException {
     // this will force the file to be extended with mostly undefined bytes
index 3e3cbbe71fd5bbd3d648c8f7e6639e52a52aaa0e..11eec91ba8660eed60b15631b4c29a6998133efc 100644 (file)
@@ -128,11 +128,10 @@ public class Table
   }
   
   /**
+   * @param database database which owns this table
    * @param tableBuffer Buffer to read the table with
-   * @param pageChannel Page channel to get database pages from
-   * @param format Format of the database that contains this table
    * @param pageNumber Page number of the table definition
-        * @param name Table name
+   * @param name Table name
    */
   protected Table(Database database, ByteBuffer tableBuffer,
                   int pageNumber, String name)
@@ -277,7 +276,7 @@ public class Table
   }
   
   /**
-   * Delete the current row (retrieved by a call to {@link #getNextRow}).
+   * Delete the current row (retrieved by a call to {@link #getNextRow()}).
    */
   public void deleteCurrentRow() throws IOException {
     _cursor.deleteCurrentRow();
@@ -782,7 +781,7 @@ public class Table
     // variable length values so that we have a better chance of fitting it
     // all (because "long variable" values can go in separate pages)
     short longVariableOffset =
-      (short) Column.countNonLongVariableLength(columns);
+      Column.countNonLongVariableLength(columns);
     for (Column col : columns) {
       int position = buffer.position();
       buffer.put(col.getType().getValue());
@@ -801,8 +800,8 @@ public class Table
       }
       buffer.putShort(columnNumber); //Column Number again
       if(col.getType().getHasScalePrecision()) {
-        buffer.put((byte) col.getPrecision());  // numeric precision
-        buffer.put((byte) col.getScale());  // numeric scale
+        buffer.put(col.getPrecision());  // numeric precision
+        buffer.put(col.getScale());  // numeric scale
       } else {
         buffer.put((byte) 0x00); //unused
         buffer.put((byte) 0x00); //unused
@@ -882,10 +881,10 @@ public class Table
       rtn.putShort(getRowStartOffset(i, format), (short)rowStart);
       if(i == 0) {
         // initial "usage pages" map definition
-        rtn.put(rowStart, (byte)UsageMap.MAP_TYPE_REFERENCE);
+        rtn.put(rowStart, UsageMap.MAP_TYPE_REFERENCE);
       } else {
         // initial "pages with free space" map definition
-        rtn.put(rowStart, (byte)UsageMap.MAP_TYPE_INLINE);
+        rtn.put(rowStart, UsageMap.MAP_TYPE_INLINE);
       }
       rowStart -= usageMapRowLength;
     }
@@ -941,12 +940,12 @@ public class Table
     }
     offset += columnCount * getFormat().SIZE_COLUMN_HEADER;
     for (int i = 0; i < columnCount; i++) {
-      column = (Column) _columns.get(i);
+      column = _columns.get(i);
       short nameLength = tableBuffer.getShort(offset);
       offset += 2;
       byte[] nameBytes = new byte[nameLength];
       tableBuffer.position(offset);
-      tableBuffer.get(nameBytes, 0, (int) nameLength);
+      tableBuffer.get(nameBytes, 0, nameLength);
       column.setName(getFormat().CHARSET.decode(ByteBuffer.wrap(nameBytes)).toString());
       offset += nameLength;
     }
@@ -1162,7 +1161,7 @@ public class Table
    */
   ByteBuffer createRow(Object[] rowArray, int maxRowSize) throws IOException {
     ByteBuffer buffer = getPageChannel().createPageBuffer();
-    buffer.putShort((short) _maxColumnCount);
+    buffer.putShort(_maxColumnCount);
     NullMask nullMask = new NullMask(_maxColumnCount);
     
     List<Object> row = new ArrayList<Object>(_columns.size());
@@ -1259,7 +1258,7 @@ public class Table
       for (int i = _maxVarColumnCount - 1; i >= 0; i--) {
         buffer.putShort(varColumnOffsets[i]);
       }
-      buffer.putShort((short) _maxVarColumnCount);  //Number of var length columns
+      buffer.putShort(_maxVarColumnCount);  //Number of var length columns
     }
     
     buffer.put(nullMask.wrap());  //Null mask
@@ -1279,7 +1278,8 @@ public class Table
     // note, the saved value is the last one handed out, so pre-increment
     return ++_lastAutoNumber;
   }
-  
+
+  @Override
   public String toString() {
     StringBuilder rtn = new StringBuilder();
     rtn.append("Type: " + _tableType);
index ac6b7a8ba5334a406f569ba4586320c0ac17ebc7..f045661ac854964d9b7c4606667bdda1d6ef0608 100644 (file)
@@ -87,7 +87,7 @@ public class UsageMap
     _tableBuffer = tableBuffer;
     _tablePageNum = pageNum;
     _rowStart = rowStart;
-    _tableBuffer.position((int) _rowStart + getFormat().OFFSET_USAGE_MAP_START);
+    _tableBuffer.position(_rowStart + getFormat().OFFSET_USAGE_MAP_START);
     _startOffset = _tableBuffer.position();
     if (LOG.isDebugEnabled()) {
       LOG.debug("Usage map block:\n" + ByteUtil.toHexString(_tableBuffer, _rowStart,
@@ -380,7 +380,8 @@ public class UsageMap
       addPageNumber(newPageNumber);
     }
   }
-  
+
+  @Override
   public String toString() {
     StringBuilder builder = new StringBuilder("page numbers: [");
     PageCursor pCursor = cursor();
@@ -676,7 +677,7 @@ public class UsageMap
         throw new IOException("Page number " + pageNumber +
                               " is out of supported range");
       }
-      int pageIndex = (int)(pageNumber / getMaxPagesPerUsagePage());
+      int pageIndex = (pageNumber / getMaxPagesPerUsagePage());
       int mapPageNum = getTableBuffer().getInt(
           calculateMapPagePointerOffset(pageIndex));
       ByteBuffer mapPageBuffer = null;