Skip to content
This repository was archived by the owner on Mar 11, 2020. It is now read-only.

Commit 1a46eec

Browse files
authored
Merge pull request #48 from jedesah/topic/various_upgrades
Various upgrades to project
2 parents b7ebfb0 + 06227b5 commit 1a46eec

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

core/src/main/scala/knobs/Resource.scala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
//: ----------------------------------------------------------------------------
1717
package knobs
1818

19-
import java.net.{URI, URL}
19+
import java.net.URI
2020
import java.io.File
21-
import java.nio.file.{ FileSystems, Path => P, WatchEvent }
21+
import java.nio.file.{ FileSystems, Path => P}
2222
import java.nio.file.StandardWatchEventKinds.ENTRY_MODIFY
2323
import java.util.concurrent.{ Executors, ThreadFactory }
2424
import scala.collection.JavaConverters._
@@ -73,7 +73,7 @@ private [knobs] case class WatchBox[W](value: W, W: Watchable[W]) extends Resour
7373

7474
object Watched {
7575
def apply[R:Watchable](r: R): ResourceBox =
76-
new WatchBox(r, implicitly[Watchable[R]])
76+
WatchBox(r, implicitly[Watchable[R]])
7777
}
7878

7979
object ResourceBox {

project.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
organization in Global := "io.verizon.knobs"
33

4-
crossScalaVersions in Global := Seq("2.11.6", "2.10.5")
4+
crossScalaVersions in Global := Seq("2.11.8", "2.10.6")
55

66
scalaVersion in Global := crossScalaVersions.value.head
77

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=0.13.12
1+
sbt.version=0.13.13

0 commit comments

Comments
 (0)