File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
scalactic/src/main/scala/org/scalactic
scalatest/src/main/scala/org/scalatest Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ trait DeprecatedPrettyMethods {
52
52
* use a different <code>Prettifier</code>.
53
53
* </p>
54
54
*/
55
- implicit val prettifierConfig = PrettifierConfig (Prettifier .default)
55
+ implicit val prettifierConfig : PrettifierConfig = PrettifierConfig (Prettifier .default)
56
56
57
57
/**
58
58
* Implicit class that adds a <code>pretty</code> method to any object.
Original file line number Diff line number Diff line change @@ -1664,7 +1664,7 @@ object NonEmptyArray {
1664
1664
1665
1665
implicit def nonEmptyArrayToIterable [E ](nonEmptyArray : NonEmptyArray [E ]): Iterable [E ] = nonEmptyArray.toIterable
1666
1666
1667
- implicit def nonEmptyArrayToPartialFunction [E ](nonEmptyArray : NonEmptyArray [E ]) =
1667
+ implicit def nonEmptyArrayToPartialFunction [E ](nonEmptyArray : NonEmptyArray [E ]): PartialFunction [ Int , E ] =
1668
1668
new PartialFunction [Int , E ] {
1669
1669
def apply (idx : Int ): E = nonEmptyArray(idx)
1670
1670
def isDefinedAt (idx : Int ): Boolean = nonEmptyArray.isDefinedAt(idx)
Original file line number Diff line number Diff line change @@ -453,7 +453,7 @@ trait Configuration {
453
453
/**
454
454
* Implicit <code>PropertyCheckConfig</code> value providing default configuration values.
455
455
*/
456
- implicit val generatorDrivenConfig = PropertyCheckConfiguration ()
456
+ implicit val generatorDrivenConfig : PropertyCheckConfiguration = PropertyCheckConfiguration ()
457
457
}
458
458
459
459
/**
Original file line number Diff line number Diff line change @@ -279,7 +279,7 @@ package org.scalatest.time
279
279
*/
280
280
trait SpanSugar {
281
281
282
- implicit val postfixOps = language.postfixOps
282
+ implicit val postfixOps : languageFeature.postfixOps = language.postfixOps
283
283
284
284
/**
285
285
* Class containing methods that return a <code>Span</code> time value calculated from the
You can’t perform that action at this time.
0 commit comments