Skip to content

Commit b90ba82

Browse files
committed
Bug 37764648 - [37764553->25.03.1] Fix JavaDoc errors found in core components
[git-p4: depot-paths = "//dev/coherence-ce/release/coherence-ce-v25.03/": change = 115296]
1 parent fb29970 commit b90ba82

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

Diff for: prj/coherence-core/src/main/java/com/tangosol/net/cache/NonBlockingEntryStore.java

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/*
2-
* Copyright (c) 2000, 2021, Oracle and/or its affiliates.
2+
* Copyright (c) 2000, 2025, Oracle and/or its affiliates.
33
*
44
* Licensed under the Universal Permissive License v 1.0 as shown at
5-
* http://oss.oracle.com/licenses/upl.
5+
* https://oss.oracle.com/licenses/upl.
66
*/
77

88
package com.tangosol.net.cache;
@@ -30,12 +30,12 @@
3030
* an implementation to suggest to Coherence that no further processing will occur for the
3131
* relevant operation. Below is an example implementation:
3232
* <pre><code>
33-
* public void loadAll(Set<? extends BinaryEntry<K, V>> setBinEntries, StoreObserver<K, V> observer)
33+
* public void loadAll(Set&lt;? extends BinaryEntry&lt;K, V>> setBinEntries, StoreObserver&lt;K, V> observer)
3434
* {
3535
* SomeReactiveResource resource;
36-
* for (BinaryEntry<K, V> binEntry : setBinEntries)
36+
* for (BinaryEntry&lt;K, V> binEntry : setBinEntries)
3737
* {
38-
* CompletableFuture<V> future = resource.get(binEntry.getKey);
38+
* CompletableFuture&lt;V> future = resource.get(binEntry.getKey);
3939
* future.whenComplete((value, exception) ->
4040
* {
4141
* if (exception == null)
@@ -48,7 +48,7 @@
4848
* observer.onError(binEntry, exception))
4949
* if (isTerminal(exception))
5050
* {
51-
* // no futher processing will be possible as resource
51+
* // no further processing will be possible as resource
5252
* // is terminally unavailable and assume futures will
5353
* // not be fired
5454
* observer.onComplete();
@@ -60,9 +60,9 @@
6060
* </code></pre>
6161
* Some additional notes on calling {@link StoreObserver#onComplete()}:
6262
* <ul>
63-
* <li>The StoreObserver instance will throw a IllegalStateExcpetion on
63+
* <li>The StoreObserver instance will throw a IllegalStateException on
6464
* any future calls to {@link StoreObserver#onNext onNext} or {@link StoreObserver#onError onError}.</li>
65-
* <li>Any unprocessed entires will have their decorations removed thus store
65+
* <li>Any unprocessed entries will have their decorations removed thus store
6666
* will not be called on failover</li>
6767
* </ul>
6868
*

Diff for: prj/coherence-core/src/main/java/com/tangosol/net/partition/VersionAwareMapListener.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/*
2-
* Copyright (c) 2000, 2021, Oracle and/or its affiliates.
2+
* Copyright (c) 2000, 2025, Oracle and/or its affiliates.
33
*
44
* Licensed under the Universal Permissive License v 1.0 as shown at
5-
* http://oss.oracle.com/licenses/upl.
5+
* https://oss.oracle.com/licenses/upl.
66
*/
77
package com.tangosol.net.partition;
88

@@ -21,7 +21,7 @@
2121
* below.
2222
* <p>
2323
* Implementations of this interface suggest that they are aware of event versions
24-
* ({@link com.tangosol.util.MapEvent#getPartition() partition} &
24+
* ({@link com.tangosol.util.MapEvent#getPartition() partition} and
2525
* {@link com.tangosol.util.MapEvent#getVersion() version}), such that this
2626
* implementation can be asked for all partition version that were last received
2727
* or is interested in receiving. Additionally, there is a convenient {@link
@@ -48,7 +48,7 @@
4848
* <li><b>Client death</b> - client process dies but the same logical process
4949
* restarts</li>
5050
* </ol>
51-
* For cases 1 & 2, having to "reconnect" to the source is automatically handled
51+
* For cases 1 and 2, having to "reconnect" to the source is automatically handled
5252
* by Coherence, thus this interface allows Coherence to which version for
5353
* each partition was last read and request the replay with the aforementioned
5454
* considerations.

0 commit comments

Comments
 (0)