summaryrefslogtreecommitdiff
path: root/src/main
diff options
context:
space:
mode:
Diffstat (limited to 'src/main')
-rw-r--r--src/main/java/com/amazon/carbonado/raw/RawStorableGenerator.java4
-rw-r--r--src/main/java/com/amazon/carbonado/repo/jdbc/JDBCStorableGenerator.java2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/com/amazon/carbonado/raw/RawStorableGenerator.java b/src/main/java/com/amazon/carbonado/raw/RawStorableGenerator.java
index 36fd57e..57467cc 100644
--- a/src/main/java/com/amazon/carbonado/raw/RawStorableGenerator.java
+++ b/src/main/java/com/amazon/carbonado/raw/RawStorableGenerator.java
@@ -137,11 +137,11 @@ public class RawStorableGenerator {
* protected abstract byte[] encodeData();
*
* // Decode the primary key into properties of this storable.
- * // Note: this method is also invoked by the four argument constructor.
+ * // Note: this method is also invoked by the three argument constructor.
* protected abstract void decodeKey(byte[]);
*
* // Decode the data into properties of this storable.
- * // Note: this method is also invoked by the four argument constructor.
+ * // Note: this method is also invoked by the three argument constructor.
* protected abstract void decodeData(byte[]);
* </pre>
*
diff --git a/src/main/java/com/amazon/carbonado/repo/jdbc/JDBCStorableGenerator.java b/src/main/java/com/amazon/carbonado/repo/jdbc/JDBCStorableGenerator.java
index 8e6e468..0dc9d38 100644
--- a/src/main/java/com/amazon/carbonado/repo/jdbc/JDBCStorableGenerator.java
+++ b/src/main/java/com/amazon/carbonado/repo/jdbc/JDBCStorableGenerator.java
@@ -167,7 +167,7 @@ class JDBCStorableGenerator<S extends Storable> {
}
if (prop.isAutomatic() && !identityProperties.containsKey(prop.getName())) {
// Might still need to reload. This could be determined
- // dynamically, but this is an optimization that be
+ // dynamically, but this is an optimization that can be
// implemented later.
// TODO: leave suppressReload alone and perform dynamic check
suppressReload = false;