From 1ebdd574cde4f6f4af2a624ce1034363979e3225 Mon Sep 17 00:00:00 2001 From: Alec Grieser Date: Wed, 18 Oct 2017 14:16:46 -0700 Subject: [PATCH] fixed some sneaky references to com.apple.cie.foundationdb hiding in javadocs --- .../main/com/apple/foundationdb/subspace/Subspace.java | 6 +++--- .../main/com/apple/foundationdb/tuple/Tuple.java | 10 +++++----- .../main/com/apple/foundationdb/subspace/Subspace.java | 6 +++--- .../src/main/com/apple/foundationdb/tuple/Tuple.java | 8 ++++---- 4 files changed, 15 insertions(+), 15 deletions(-) diff --git a/bindings/java/src-completable/main/com/apple/foundationdb/subspace/Subspace.java b/bindings/java/src-completable/main/com/apple/foundationdb/subspace/Subspace.java index 0212039de3..057ded4130 100644 --- a/bindings/java/src-completable/main/com/apple/foundationdb/subspace/Subspace.java +++ b/bindings/java/src-completable/main/com/apple/foundationdb/subspace/Subspace.java @@ -189,11 +189,11 @@ public class Subspace /** * Gets the key encoding the specified tuple in this {@code Subspace} for use with - * {@link com.apple.cie.foundationdb.MutationType#SET_VERSIONSTAMPED_KEY MutationType.SET_VERSIONSTAMPED_KEY}. + * {@link com.apple.foundationdb.MutationType#SET_VERSIONSTAMPED_KEY MutationType.SET_VERSIONSTAMPED_KEY}. * There must be exactly one incomplete {@link Versionstamp} included in the given {@link Tuple}. It will * create a key that is within this {@code Subspace} that can be provided as the {@code key} argument to - * {@link com.apple.cie.foundationdb.Transaction#mutate(com.apple.cie.foundationdb.MutationType, byte[], byte[]) Transaction.mutate()} - * with the {@link com.apple.cie.foundationdb.MutationType#SET_VERSIONSTAMPED_KEY SET_VERSIONSTAMPED_KEY} + * {@link com.apple.foundationdb.Transaction#mutate(com.apple.foundationdb.MutationType, byte[], byte[]) Transaction.mutate()} + * with the {@link com.apple.foundationdb.MutationType#SET_VERSIONSTAMPED_KEY SET_VERSIONSTAMPED_KEY} * mutation. This will throw an {@link IllegalArgumentException} if the {@link Tuple} does not * contain an incomplete {@link Versionstamp} or if it contains multiple. * diff --git a/bindings/java/src-completable/main/com/apple/foundationdb/tuple/Tuple.java b/bindings/java/src-completable/main/com/apple/foundationdb/tuple/Tuple.java index 8b39a23bf1..5196d2cd10 100644 --- a/bindings/java/src-completable/main/com/apple/foundationdb/tuple/Tuple.java +++ b/bindings/java/src-completable/main/com/apple/foundationdb/tuple/Tuple.java @@ -295,7 +295,7 @@ public class Tuple implements Comparable, Iterable { /** * Get an encoded representation of this {@code Tuple} for use with - * {@link com.apple.cie.foundationdb.MutationType#SET_VERSIONSTAMPED_KEY MutationType.SET_VERSIONSTAMPED_KEY}. + * {@link com.apple.foundationdb.MutationType#SET_VERSIONSTAMPED_KEY MutationType.SET_VERSIONSTAMPED_KEY}. * This works the same as the {@link #packWithVersionstamp(byte[]) one-paramter version of this method}, * but it does not add any prefix to the array. * @@ -311,7 +311,7 @@ public class Tuple implements Comparable, Iterable { /** * Get an encoded representation of this {@code Tuple} for use with - * {@link com.apple.cie.foundationdb.MutationType#SET_VERSIONSTAMPED_KEY MutationType.SET_VERSIONSTAMPED_KEY}. + * {@link com.apple.foundationdb.MutationType#SET_VERSIONSTAMPED_KEY MutationType.SET_VERSIONSTAMPED_KEY}. * This works the same as the {@link #packWithVersionstamp(byte[]) one-paramter version of this method}, * but it does not add any prefix to the array. * @@ -324,15 +324,15 @@ public class Tuple implements Comparable, Iterable { /** * Get an encoded representation of this {@code Tuple} for use with. - * {@link com.apple.cie.foundationdb.MutationType#SET_VERSIONSTAMPED_KEY MutationType.SET_VERSIONSTAMPED_KEY}. + * {@link com.apple.foundationdb.MutationType#SET_VERSIONSTAMPED_KEY MutationType.SET_VERSIONSTAMPED_KEY}. * There must be exactly one incomplete {@link Versionstamp} instance within this * {@code Tuple} or this will throw an {@link IllegalArgumentException}. * Each element is encoded to {@code byte}s and concatenated, the prefix * is then prepended to the array, and then the index of the serialized incomplete * {@link Versionstamp} is appended as a little-endian integer. This can then be passed * as the key to - * {@link com.apple.cie.foundationdb.Transaction#mutate(com.apple.cie.foundationdb.MutationType, byte[], byte[]) Transaction.mutate()} - * with the {@code SET_VERSIONSTAMPED_KEY} {@link com.apple.cie.foundationdb.MutationType}, and the transaction's + * {@link com.apple.foundationdb.Transaction#mutate(com.apple.foundationdb.MutationType, byte[], byte[]) Transaction.mutate()} + * with the {@code SET_VERSIONSTAMPED_KEY} {@link com.apple.foundationdb.MutationType}, and the transaction's * version will then be filled in at commit time. * * @param prefix additional byte-array prefix to prepend to serialized bytes. diff --git a/bindings/java/src/main/com/apple/foundationdb/subspace/Subspace.java b/bindings/java/src/main/com/apple/foundationdb/subspace/Subspace.java index 4a7de812bc..a821e77b1a 100644 --- a/bindings/java/src/main/com/apple/foundationdb/subspace/Subspace.java +++ b/bindings/java/src/main/com/apple/foundationdb/subspace/Subspace.java @@ -189,11 +189,11 @@ public class Subspace /** * Gets the key encoding the specified tuple in this {@code Subspace} for use with - * {@link com.apple.cie.foundationdb.MutationType#SET_VERSIONSTAMPED_KEY MutationType.SET_VERSIONSTAMPED_KEY}. + * {@link com.apple.foundationdb.MutationType#SET_VERSIONSTAMPED_KEY MutationType.SET_VERSIONSTAMPED_KEY}. * There must be exactly one incomplete {@link Versionstamp} included in the given {@link Tuple}. It will * create a key that is within this {@code Subspace} that can be provided as the {@code key} argument to - * {@link com.apple.cie.foundationdb.Transaction#mutate(com.apple.cie.foundationdb.MutationType, byte[], byte[]) Transaction.mutate()} - * with the {@link com.apple.cie.foundationdb.MutationType#SET_VERSIONSTAMPED_KEY SET_VERSIONSTAMPED_KEY} + * {@link com.apple.foundationdb.Transaction#mutate(com.apple.foundationdb.MutationType, byte[], byte[]) Transaction.mutate()} + * with the {@link com.apple.foundationdb.MutationType#SET_VERSIONSTAMPED_KEY SET_VERSIONSTAMPED_KEY} * mutation. This will throw an {@link IllegalArgumentException} if the {@link Tuple} does not * contain an incomplete {@link Versionstamp} or if it contains multiple. * diff --git a/bindings/java/src/main/com/apple/foundationdb/tuple/Tuple.java b/bindings/java/src/main/com/apple/foundationdb/tuple/Tuple.java index 48165cae42..99b44b3e35 100644 --- a/bindings/java/src/main/com/apple/foundationdb/tuple/Tuple.java +++ b/bindings/java/src/main/com/apple/foundationdb/tuple/Tuple.java @@ -308,7 +308,7 @@ public class Tuple implements Comparable, Iterable { /** * Get an encoded representation of this {@code Tuple} for use with - * {@link com.apple.cie.foundationdb.MutationType#SET_VERSIONSTAMPED_KEY MutationType.SET_VERSIONSTAMPED_KEY}. + * {@link com.apple.foundationdb.MutationType#SET_VERSIONSTAMPED_KEY MutationType.SET_VERSIONSTAMPED_KEY}. * This works the same as the {@link #packWithVersionstamp(byte[]) one-paramter version of this method}, * but it does not add any prefix to the array. * @@ -321,15 +321,15 @@ public class Tuple implements Comparable, Iterable { /** * Get an encoded representation of this {@code Tuple} for use with - * {@link com.apple.cie.foundationdb.MutationType#SET_VERSIONSTAMPED_KEY MutationType.SET_VERSIONSTAMPED_KEY}. + * {@link com.apple.foundationdb.MutationType#SET_VERSIONSTAMPED_KEY MutationType.SET_VERSIONSTAMPED_KEY}. * There must be exactly one incomplete {@link Versionstamp} instance within this * {@code Tuple} or this will throw an {@link IllegalArgumentException}. * Each element is encoded to {@code byte}s and concatenated, the prefix * is then prepended to the array, and then the index of the serialized incomplete * {@link Versionstamp} is appended as a little-endian integer. This can then be passed * as the key to - * {@link com.apple.cie.foundationdb.Transaction#mutate(com.apple.cie.foundationdb.MutationType, byte[], byte[]) Transaction.mutate()} - * with the {@code SET_VERSIONSTAMPED_KEY} {@link com.apple.cie.foundationdb.MutationType}, and the transaction's + * {@link com.apple.foundationdb.Transaction#mutate(com.apple.foundationdb.MutationType, byte[], byte[]) Transaction.mutate()} + * with the {@code SET_VERSIONSTAMPED_KEY} {@link com.apple.foundationdb.MutationType}, and the transaction's * version will then be filled in at commit time. * * @param prefix additional byte-array prefix to prepend to serialized bytes.