Skip to content

Commit 5b8e925

Browse files
committed
Run scalafmt
1 parent 267f2fc commit 5b8e925

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

compat/src/main/scala-2.11/scala/util/Using.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,7 @@ object Using {
403403
/** An implicit `Releasable` for [[scala.io.Source `Source`s]] which aren't [[java.lang.AutoCloseable `AutoCloseable`s]] in Scala 2.11. */
404404
implicit object SourceReleasable extends Releasable[Source] {
405405
def release(resource: Source): Unit = resource.close()
406-
}
406+
}
407407
}
408408

409409
}

compat/src/test/scala/scala/util/UsingTest.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -765,7 +765,7 @@ class UsingTest {
765765
Using(Source.fromString("Hello, Source!")) { source =>
766766
// If this simply compiles, then mission accomplished.
767767
}
768-
}
768+
}
769769
}
770770

771771
object UsingTest {

0 commit comments

Comments
 (0)