Skip to content

Commit e852d8b

Browse files
committed
Remove spurious whitespace diffs
1 parent 97ce5e1 commit e852d8b

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

src/main/java/com/googlecode/objectify/cache/CachingAsyncDatastore.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,30 +20,30 @@
2020
/**
2121
* <p>A write-through memcache for Entity objects that works for both transactional
2222
* and nontransactional sessions.</p>
23-
*
23+
*
2424
* <ul>
2525
* <li>Caches negative results as well as positive results.</li>
2626
* <li>Queries do not affect the cache in any way.</li>
2727
* <li>Transactional reads bypass the cache, but successful transaction commits will update the cache.</li>
2828
* <li>This cache has near-transactional integrity. As long as DeadlineExceededException is not hit, cache should
2929
* not go out of sync even under heavy contention.</li>
3030
* </ul>
31-
*
31+
*
3232
* <p>Note: Until Google adds a hook that lets us wrap native Future<?> implementations,
3333
* you muse install the {@code AsyncCacheFilter} to use this cache asynchronously. This
3434
* is not necessary for synchronous use of {@code CachingDatastoreService}, but asynchronous
3535
* operation requires an extra hook for the end of a request when fired-and-forgotten put()s
3636
* and delete()s get processed. <strong>If you use this cache asynchronously, and you do not
3737
* use the {@code AsyncCacheFilter}, your cache will go out of sync.</strong></p>
38-
*
38+
*
3939
* @author Jeff Schnitzer <jeff@infohazard.org>
4040
*/
4141
@Slf4j
4242
public class CachingAsyncDatastore extends CachingAsyncDatastoreReaderWriter implements AsyncDatastore
4343
{
4444
/** */
4545
private final AsyncDatastore raw;
46-
46+
4747
/** */
4848
private final EntityMemcache memcache;
4949

src/main/java/com/googlecode/objectify/impl/AsyncDatastore.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ public interface AsyncDatastore extends AsyncDatastoreReaderWriter {
1616
/**
1717
*/
1818
AsyncTransaction newTransaction(Runnable afterCommit, ByteString prevTxnHandle);
19-
}
19+
}

src/main/java/com/googlecode/objectify/impl/AsyncDatastoreImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ public AsyncTransaction newTransaction(final Runnable afterCommit, final ByteStr
2828
}
2929
return new AsyncTransactionImpl(datastore.newTransaction(txnOptions.build()), afterCommit);
3030
}
31-
}
31+
}

0 commit comments

Comments
 (0)