Skip to content

Commit ff6c501

Browse files
committed
Qualify IntervalSets
1 parent b5c3348 commit ff6c501

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Domains/Domains.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module Domains
22

33
import ..Geometry: Geometry, float_type
4-
using IntervalSets
4+
import IntervalSets
55
export RectangleDomain
66

77
"""
@@ -62,7 +62,7 @@ function IntervalDomain(
6262
end
6363
IntervalDomain(promote(coord_min, coord_max)..., boundary_names)
6464
end
65-
IntervalDomain(coords::ClosedInterval; kwargs...) =
65+
IntervalDomain(coords::IntervalSets.ClosedInterval; kwargs...) =
6666
IntervalDomain(coords.left, coords.right; kwargs...)
6767

6868
"""
@@ -130,8 +130,8 @@ Construct a `RectangularDomain` in the horizontal.
130130
If a given x1 or x2 boundary is not periodic, then `x1boundary` or `x2boundary` boundary name keyword arguments must be supplied.
131131
"""
132132
function RectangleDomain(
133-
x1::ClosedInterval{X1CT},
134-
x2::ClosedInterval{X2CT};
133+
x1::IntervalSets.ClosedInterval{X1CT},
134+
x2::IntervalSets.ClosedInterval{X2CT};
135135
x1periodic = false,
136136
x2periodic = false,
137137
x1boundary::BCTagType = nothing,

0 commit comments

Comments
 (0)