Skip to content

Commit 08ebba7

Browse files
committed
Merge pull request #3668 from akarnokd/Java6Backport
2.x: full JDK 6 compatible backport + including bugfixes up to today
2 parents b869c1d + 000a174 commit 08ebba7

File tree

650 files changed

+30213
-10166
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

650 files changed

+30213
-10166
lines changed

build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ description = 'RxJava: Reactive Extensions for the JVM – a library for composi
88
apply plugin: 'rxjava-project'
99
apply plugin: 'java'
1010

11-
sourceCompatibility = JavaVersion.VERSION_1_8
12-
targetCompatibility = JavaVersion.VERSION_1_8
11+
sourceCompatibility = JavaVersion.VERSION_1_6
12+
targetCompatibility = JavaVersion.VERSION_1_6
1313

1414
dependencies {
1515
compile 'org.reactivestreams:reactive-streams:1.0.0'

src/main/java/io/reactivex/BackpressureStrategy.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2015 Netflix, Inc.
2+
* Copyright 2016 Netflix, Inc.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in
55
* compliance with the License. You may obtain a copy of the License at

0 commit comments

Comments
 (0)