fix the broken syntax of an @implNote
This commit is contained in:
parent
4fbcfbdaba
commit
32bd334298
|
@ -141,9 +141,9 @@ public interface SelectionQuery<R> extends CommonQueryContract {
|
||||||
*
|
*
|
||||||
* @return The results as a {@link Stream}
|
* @return The results as a {@link Stream}
|
||||||
*
|
*
|
||||||
* @implNote: The default implementation simply returns
|
* @implNote The default implementation defined here simply returns
|
||||||
* <code>{@link #list()}.stream()</code>. Concrete implementations
|
* {@link #list()}{@code .stream()}. Concrete implementations
|
||||||
* may provide more efficient implementations.
|
* may be more efficient.
|
||||||
*/
|
*/
|
||||||
default Stream<R> getResultStream() {
|
default Stream<R> getResultStream() {
|
||||||
return stream();
|
return stream();
|
||||||
|
|
Loading…
Reference in New Issue