Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
Signed-off-by: Oleh Dokuka <[email protected]>
  • Loading branch information
OlegDokuka committed Dec 16, 2019
1 parent a3f07d8 commit 0ee435e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
5 changes: 4 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,11 @@ subprojects {
repositories {
mavenCentral()

if (version.endsWith('BUILD-SNAPSHOT') || project.hasProperty('platformVersion')) {
if (version.endsWith('SNAPSHOT') || project.hasProperty('platformVersion')) {
maven { url 'http://repo.spring.io/libs-snapshot' }
maven {
url 'https://oss.jfrog.org/artifactory/oss-snapshot-local'
}
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,8 @@
import reactor.util.annotation.Nullable;

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

0 comments on commit 0ee435e

Please sign in to comment.