Skip to content

Commit e59f85a

Browse files
authored
Merge pull request #45 from giordano/patch-1
Remove unused parameter
2 parents 3e9e180 + bf4e0d2 commit e59f85a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "GitForge"
22
uuid = "8f6bce27-0656-5410-875b-07a5572985df"
33
authors = ["Chris de Graaf <[email protected]>"]
4-
version = "0.4.1"
4+
version = "0.4.2"
55

66
[deps]
77
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"

src/forge.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ constructfield(ctx::FieldContext, ::Type{Union{Vector{FT}, Nothing}}, vec::Vecto
7777
[constructfield(ctx, FT, v) for v in vec]
7878

7979
# convert Vectors recursively
80-
constructfield(ctx::FieldContext, ::Type, vec::Vector) where FT =
80+
constructfield(ctx::FieldContext, ::Type, vec::Vector) =
8181
[constructfield(ctx, Union{Any, Nothing}, v) for v in vec]
8282

8383
# convert dicts recursively

0 commit comments

Comments
 (0)