Skip to content

Commit

Permalink
Fixed a little bit
Browse files Browse the repository at this point in the history
  • Loading branch information
sh0hei committed Jun 15, 2018
1 parent 2828bb2 commit c5a9cb4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ trait AllTypes
extends CharTypes
with DigestTypes
with NetTypes
with NumericTypes with NumericTypesBinCompat1
with NumericTypes
with NumericTypesBinCompat1
with StringTypes
with TimeTypes
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package eu.timepit.refined.types

import eu.timepit.refined
import eu.timepit.refined.api.{Refined, RefinedTypeOps}
import eu.timepit.refined.numeric.{Negative, NonNegative, NonPositive, Positive}

Expand Down Expand Up @@ -183,13 +182,13 @@ trait NumericTypesBinCompat1 {
final val PosByte = numeric.PosByte

final type NonNegByte = numeric.NonNegByte
final val NonNegByte = refined.types.numeric.NonNegByte
final val NonNegByte = numeric.NonNegByte

final type NegByte = numeric.NegByte
final val NegByte = numeric.NegByte

final type NonPosByte = numeric.NonPosByte
final val NonPosByte = refined.types.numeric.NonPosByte
final val NonPosByte = numeric.NonPosByte

final type PosShort = numeric.PosShort
final val PosShort = numeric.PosShort
Expand All @@ -202,4 +201,4 @@ trait NumericTypesBinCompat1 {

final type NonPosShort = numeric.NonPosShort
final val NonPosShort = numeric.NonPosShort
}
}

0 comments on commit c5a9cb4

Please sign in to comment.