summaryrefslogtreecommitdiff
path: root/src/main/java/com/amazon/carbonado/raw/KeyDecoder.java
diff options
context:
space:
mode:
authorBrian S. O'Neill <bronee@gmail.com>2008-07-28 01:33:49 +0000
committerBrian S. O'Neill <bronee@gmail.com>2008-07-28 01:33:49 +0000
commitcaa97449f6087174ad1970ee8058e164a35f475f (patch)
tree4ce541476825db8bee7bcb1e009afb8c3073f6ef /src/main/java/com/amazon/carbonado/raw/KeyDecoder.java
parent9043d4167aeab129be1aa786d47d5559e9045301 (diff)
Remove BigDecimal support until key encoding issues are resolved.
Diffstat (limited to 'src/main/java/com/amazon/carbonado/raw/KeyDecoder.java')
-rw-r--r--src/main/java/com/amazon/carbonado/raw/KeyDecoder.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/main/java/com/amazon/carbonado/raw/KeyDecoder.java b/src/main/java/com/amazon/carbonado/raw/KeyDecoder.java
index dc838e6..eb44c53 100644
--- a/src/main/java/com/amazon/carbonado/raw/KeyDecoder.java
+++ b/src/main/java/com/amazon/carbonado/raw/KeyDecoder.java
@@ -443,7 +443,7 @@ public class KeyDecoder {
* @return amount of bytes read from source
* @throws CorruptEncodingException if source data is corrupt
* @since 1.2
- */
+ * /
public static int decode(byte[] src, int srcOffset, BigDecimal[] valueRef)
throws CorruptEncodingException
{
@@ -508,7 +508,7 @@ public class KeyDecoder {
* @return amount of bytes read from source
* @throws CorruptEncodingException if source data is corrupt
* @since 1.2
- */
+ * /
public static int decodeDesc(byte[] src, int srcOffset, BigDecimal[] valueRef)
throws CorruptEncodingException
{
@@ -563,6 +563,7 @@ public class KeyDecoder {
valueRef[0] = new BigDecimal(unscaledValue, scale);
return srcOffset - originalOffset;
}
+ */
/**
* Decodes the given byte array as originally encoded for ascending order.