Skip to content

Commit 0ee435e

Browse files
committed
fixes
Signed-off-by: Oleh Dokuka <[email protected]>
1 parent a3f07d8 commit 0ee435e

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

build.gradle

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,11 @@ subprojects {
8888
repositories {
8989
mavenCentral()
9090

91-
if (version.endsWith('BUILD-SNAPSHOT') || project.hasProperty('platformVersion')) {
91+
if (version.endsWith('SNAPSHOT') || project.hasProperty('platformVersion')) {
9292
maven { url 'http://repo.spring.io/libs-snapshot' }
93+
maven {
94+
url 'https://oss.jfrog.org/artifactory/oss-snapshot-local'
95+
}
9396
}
9497
}
9598

rsocket-core/src/main/java/io/rsocket/internal/UnicastMonoEmpty.java

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,8 @@
99
import reactor.util.annotation.Nullable;
1010

1111
/**
12-
* Represents an empty publisher which only calls onSubscribe and onComplete.
13-
*
14-
* <p>This Publisher is effectively stateless and only a single instance exists. Use the {@link
15-
* #instance()} method to obtain a properly type-parametrized view of it.
12+
* Represents an empty publisher which only calls onSubscribe and onComplete and allows only a
13+
* single subscriber.
1614
*
1715
* @see <a href="https://github.com/reactor/reactive-streams-commons">Reactive-Streams-Commons</a>
1816
*/

0 commit comments

Comments
 (0)