Skip to content

Commit

Permalink
Use correct return value for heatmap methods
Browse files Browse the repository at this point in the history
  • Loading branch information
jheinen committed Oct 21, 2024
1 parent 8b7fa48 commit 1d94369
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/jlgr.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2287,7 +2287,6 @@ function heatmap(D, plt=plt[]; kv...)
else
error("expected 2-D array")
end
nothing
end

is_uniformly_spaced(v; tol = 1e-6) =
Expand All @@ -2309,7 +2308,6 @@ function heatmap(x, y, z, plt=plt[]; kv...)
else
error("expected 2-D array")
end
nothing
end

function polarheatmap(D; kv...)
Expand All @@ -2325,7 +2323,6 @@ function polarheatmap(D; kv...)
else
error("expected 2-D array")
end
nothing
end

function polarheatmap(x, y, z, plt=plt[]; kv...)
Expand All @@ -2342,7 +2339,6 @@ function polarheatmap(x, y, z, plt=plt[]; kv...)
else
error("expected 2-D array")
end
nothing
end

"""
Expand Down

0 comments on commit 1d94369

Please sign in to comment.