@@ -114,28 +114,27 @@ interface TransactionCallable<T> {
114114 Entity get (Key key , ReadOption ... options );
115115
116116 /**
117- * Returns an {@link Entity} for each given {@link Key} that exists in the Datastore.
118- * The order of the result is unspecified.
119- * Results are loaded lazily, so it is possible to get a {@code DatastoreException}
120- * from the returned {@code Iterator}'s {@link Iterator#hasNext hasNext} or
121- * {@link Iterator#next next} methods. {@link ReadOption}s can be specified if desired.
117+ * Returns an {@link Entity} for each given {@link Key} that exists in the Datastore. The order of
118+ * the result is unspecified. Results are loaded lazily, so it is possible to get a
119+ * {@code DatastoreException} from the returned {@code Iterator}'s
120+ * {@link Iterator#hasNext hasNext} or {@link Iterator#next next} methods. {@link ReadOption}s can
121+ * be specified if desired.
122122 *
123123 * @throws DatastoreException upon failure
124124 * @see #get(Key)
125125 */
126126 Iterator <Entity > get (Iterable <Key > keys , ReadOption ... options );
127127
128128 /**
129- * Returns a list with a value for each given key (ordered by input).
130- * {@code null} values are returned for nonexistent keys.
131- * When possible prefer using {@link #get(Key...)} to avoid eagerly loading the results.
132- * {@link ReadOption}s can be specified if desired.
129+ * Returns a list with a value for each given key (ordered by input). {@code null} values are
130+ * returned for nonexistent keys. When possible prefer using {@link #get(Key...)} to avoid eagerly
131+ * loading the results. {@link ReadOption}s can be specified if desired.
133132 */
134133 List <Entity > fetch (Iterable <Key > keys , ReadOption ... options );
135134
136135 /**
137- * Submits a {@link Query} and returns its result.
138- * {@link ReadOption}s can be specified if desired.
136+ * Submits a {@link Query} and returns its result. {@link ReadOption}s can be specified if
137+ * desired.
139138 *
140139 * @throws DatastoreException upon failure
141140 */
0 commit comments