File tree Expand file tree Collapse file tree 3 files changed +2
-62
lines changed
language-adaptors/rxjava-scala/src/test/scala/rx/lang/scala Expand file tree Collapse file tree 3 files changed +2
-62
lines changed Original file line number Diff line number Diff line change @@ -12,8 +12,6 @@ DEFAULT_JVM_OPTS=""
12
12
APP_NAME=" Gradle"
13
13
APP_BASE_NAME=` basename " $0 " `
14
14
15
- JAVA_HOME=" /Library/Java/JavaVirtualMachines/jdk1.7.0_40.jdk/Contents/Home"
16
-
17
15
# Use the maximum available, or set MAX_FD != -1 to use that value.
18
16
MAX_FD=" maximum"
19
17
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -3,9 +3,8 @@ package rx.lang.scala.subscriptions
3
3
import org .junit .Assert ._
4
4
import org .junit .Test
5
5
import org .scalatest .junit .JUnitSuite
6
- import rx .lang .scala ._
7
-
8
6
7
+ import rx .lang .scala .Subscription
9
8
10
9
class SubscriptionTests extends JUnitSuite {
11
10
@@ -47,7 +46,7 @@ class SubscriptionTests extends JUnitSuite {
47
46
val s0 = BooleanSubscription { u0 = true }
48
47
49
48
var u1 = false
50
- val s1 = rx.lang.scala. Subscription { u1 = true }
49
+ val s1 = Subscription { u1 = true }
51
50
52
51
val composite = CompositeSubscription ()
53
52
You can’t perform that action at this time.
0 commit comments